mirror of
https://github.com/tgstation/tgstation-server.git
synced 2026-08-26 22:48:20 +01:00
Beware those that read into this commit. Here there be style conformance... Closes #1252
19 lines
471 B
C#
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";
|
|
}
|
|
}
|