Skip to content

Commit

Permalink
lets be precise what's missing
Browse files Browse the repository at this point in the history
  • Loading branch information
NickJosevski committed Mar 29, 2019
1 parent fe2fa64 commit c137b87
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -4355,7 +4355,8 @@ Octopus.Client.Model
Octopus.Client.Model.Resource
{
.ctor()
Boolean IsComplete { get; set; }
Boolean IsPermissionsComplete { get; set; }
Boolean IsTeamsComplete { get; set; }
Dictionary<Permission, List<UserPermissionRestriction>> SpacePermissions { get; set; }
List<Permission> SystemPermissions { get; set; }
List<ProjectedTeamReferenceDataItem> Teams { get; set; }
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -4376,7 +4376,8 @@ Octopus.Client.Model
Octopus.Client.Model.Resource
{
.ctor()
Boolean IsComplete { get; set; }
Boolean IsPermissionsComplete { get; set; }
Boolean IsTeamsComplete { get; set; }
Dictionary<Permission, List<UserPermissionRestriction>> SpacePermissions { get; set; }
List<Permission> SystemPermissions { get; set; }
List<ProjectedTeamReferenceDataItem> Teams { get; set; }
Expand Down
7 changes: 6 additions & 1 deletion source/Octopus.Client/Model/UserPermissionSetResource.cs
Original file line number Diff line number Diff line change
Expand Up @@ -30,9 +30,14 @@ public class UserPermissionSetResource : Resource
/// </summary>
public List<ProjectedTeamReferenceDataItem> Teams { get; set; }

/// <summary>
/// If the requesting user had sufficient access to see a complete view of the teams that may drive permissions
/// </summary>
public bool IsTeamsComplete { get; set; }

/// <summary>
/// If the requesting user had sufficient access to see a complete view of the permissions
/// </summary>
public bool IsComplete { get; set; }
public bool IsPermissionsComplete { get; set; }
}
}

0 comments on commit c137b87

Please sign in to comment.