feat: basic initial implementation of spotify client link validator and song submission form refs: NOISSUE
This commit is contained in:
@@ -20,6 +20,8 @@ public class AppConfiguration
|
||||
var managersGroupName = Environment.GetEnvironmentVariable("LDAP_ADMINGROUP") ?? "admins";
|
||||
var userGroupName = Environment.GetEnvironmentVariable("LDAP_USERGROUP") ?? "everybody";
|
||||
var bindValue = Environment.GetEnvironmentVariable("LDAP_BIND");
|
||||
this.SpotifyClientId = Environment.GetEnvironmentVariable("SPOTIFY_CLIENT_ID") ?? "0c59b625470b4ad1b70743e0254d17fd";
|
||||
this.SpotifyClientSecret = Environment.GetEnvironmentVariable("SPOTIFY_CLIENT_SECRET") ?? "04daaebd42fc47909c5cbd1f5cf23555";
|
||||
this.LDAPConfig = new ConfigurationAD()
|
||||
{
|
||||
Username = Environment.GetEnvironmentVariable("LDAP_BIND") ?? "cn=admin,dc=disi,dc=dev",
|
||||
@@ -83,6 +85,16 @@ public class AppConfiguration
|
||||
get; private set;
|
||||
}
|
||||
|
||||
public string SpotifyClientId
|
||||
{
|
||||
get; private set;
|
||||
}
|
||||
|
||||
public string SpotifyClientSecret
|
||||
{
|
||||
get; private set;
|
||||
}
|
||||
|
||||
public bool UseBotTag
|
||||
{
|
||||
get; private set;
|
||||
|
Reference in New Issue
Block a user