db73cc1a12
AD Interop moved to Disco.Services; Supports multi-domain environments, sites, and searching restricted with OUs.
22 lines
792 B
C#
22 lines
792 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace Disco.Services.Authorization.Roles.ClaimGroups.Configuration.System
|
|
{
|
|
[ClaimDetails("System", "Permissions related to System Configuration")]
|
|
public class SystemClaims : BaseRoleClaimGroup
|
|
{
|
|
[ClaimDetails("Show System Configuration", "Can show the system configuration")]
|
|
public bool Show { get; set; }
|
|
|
|
[ClaimDetails("Configure Proxy Settings", "Can configure the proxy settings")]
|
|
public bool ConfigureProxy { get; set; }
|
|
|
|
[ClaimDetails("Configure Active Directory Settings", "Can configure the Active Directory interoperability settings")]
|
|
public bool ConfigureActiveDirectory { get; set; }
|
|
}
|
|
}
|