Feature #26: User Flags
Flags can be associated with Users. Includes minor updates to Job Queues and improved visibility of user information.
This commit is contained in:
+18
@@ -0,0 +1,18 @@
|
||||
namespace Disco.Services.Authorization.Roles.ClaimGroups.Configuration.UserFlag
|
||||
{
|
||||
[ClaimDetails("User Flags", "Permissions related to User Flags")]
|
||||
public class UserFlagClaims : BaseRoleClaimGroup
|
||||
{
|
||||
[ClaimDetails("Configure User Flags", "Can configure user flags")]
|
||||
public bool Configure { get; set; }
|
||||
|
||||
[ClaimDetails("Create User Flags", "Can create user flags")]
|
||||
public bool Create { get; set; }
|
||||
|
||||
[ClaimDetails("Delete User Flags", "Can delete user flags")]
|
||||
public bool Delete { get; set; }
|
||||
|
||||
[ClaimDetails("Show User Flags", "Can show user flags")]
|
||||
public bool Show { get; set; }
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user