refactor: Projektdateien migriert. Cloud-NuGet-Pakete durch lokale NuGet-Projekte ersetzt.
This commit is contained in:
22
HRD.LDAPService/Ldap/LdapGlobals.cs
Normal file
22
HRD.LDAPService/Ldap/LdapGlobals.cs
Normal file
@@ -0,0 +1,22 @@
|
||||
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";
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user