Files
tgstation-server/src/Tgstation.Server.Api/DefaultCredentials.cs
T
Jordan Brown b9586c7fee The great stylecop update
Beware those that read into this commit. Here there be style conformance...

Closes #1252
2021-05-09 19:27:09 -04:00

19 lines
471 B
C#

namespace Tgstation.Server.Api
{
/// <summary>
/// Represents initial credentials used by the server.
/// </summary>
public static class DefaultCredentials
{
/// <summary>
/// The name of the default admin user.
/// </summary>
public static readonly string AdminUserName = "Admin";
/// <summary>
/// The default admin password.
/// </summary>
public static readonly string DefaultAdminUserPassword = "ISolemlySwearToDeleteTheDataDirectory";
}
}