Feature: Job Queues
Also UI style, theme and element changes
This commit is contained in:
+24
@@ -0,0 +1,24 @@
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.Linq;
|
||||
using System.Text;
|
||||
using System.Threading.Tasks;
|
||||
|
||||
namespace Disco.Services.Authorization.Roles.ClaimGroups.Configuration.JobQueue
|
||||
{
|
||||
[ClaimDetails("Job Queues", "Permissions related to Job Queues")]
|
||||
public class JobQueueClaims : BaseRoleClaimGroup
|
||||
{
|
||||
[ClaimDetails("Configure Job Queues", "Can configure job queues")]
|
||||
public bool Configure { get; set; }
|
||||
|
||||
[ClaimDetails("Create Job Queues", "Can create job queues")]
|
||||
public bool Create { get; set; }
|
||||
|
||||
[ClaimDetails("Delete Job Queues", "Can delete job queues")]
|
||||
public bool Delete { get; set; }
|
||||
|
||||
[ClaimDetails("Show Job Queues", "Can show job queues")]
|
||||
public bool Show { get; set; }
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user