22 lines
839 B
C#
22 lines
839 B
C#
namespace HRD.LDAPService
|
|
{
|
|
public static class LdapGlobals
|
|
{
|
|
private static bool _isLive;
|
|
public static bool LDAP_WebAppGroup_Is_Live { get => _isLive; set => _isLive = value; }
|
|
|
|
public const string LDAP_WINDREAM = "Windream_";
|
|
|
|
public const string LDAP_DOMAIN = "dhr.local";
|
|
|
|
public const string LDAP_PATH_EDM = "OU=DMS,OU=Gruppen,OU=DHDEAB,DC=dhr,DC=local";
|
|
public const string LDAP_PATH_WEBAPPS = "OU=Web-Apps,OU=Gruppen,OU=DHDEAB,DC=dhr,DC=local";
|
|
|
|
public const string LDAP_EDMUser_Prefix = "GG_EDMUser_Group";
|
|
public const string LDAP_EDMAdmin_Prefix = "GG_EDMAdmin_Group";
|
|
|
|
public const string LDAP_EDM_Prefix = "GG_EDM";
|
|
public const string LDAP_WebAppp_Prefix = "GG_WebApp";
|
|
public const string LDAP_Prefix_Test = "__Test";
|
|
}
|
|
} |