Rewritten the oauth2 system to be more modular and also adjusted the default config
This commit is contained in:
@@ -30,4 +30,17 @@ public static class StringHelper
|
||||
|
||||
return result;
|
||||
}
|
||||
|
||||
public static string CapitalizeFirstCharacter(string input)
|
||||
{
|
||||
if (string.IsNullOrEmpty(input))
|
||||
{
|
||||
return input;
|
||||
}
|
||||
|
||||
char firstChar = char.ToUpper(input[0]);
|
||||
string restOfString = input.Substring(1);
|
||||
|
||||
return firstChar + restOfString;
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user