namespace ZelWiki.Library { public static class Constants { public const string CRYPTOCHECK = "ABCDEFGHIJKLMNOPQRSTUVWXYZ"; public const string DEFAULTUSERNAME = "admin@tightwiki.com"; public const string DEFAULTACCOUNT = "admin"; public const string DEFAULTPASSWORD = "2Tight2Wiki@"; public enum WikiTheme { Light, Dark } public enum AdminPasswordChangeState { /// /// The password has not been changed, display a big warning. /// IsDefault, /// /// All is well! /// HasBeenChanged, /// /// The default password status does not exist and the password needs to be set to default. /// NeedsToBeSet } public static class WikiInstruction { public static string Deprecate { get; } = "Deprecate"; public static string Protect { get; } = "Protect"; public static string Template { get; } = "Template"; public static string Review { get; } = "Review"; public static string Include { get; } = "Include"; public static string Draft { get; } = "Draft"; public static string NoCache { get; } = "NoCache"; public static string HideFooterComments { get; } = "HideFooterComments"; public static string HideFooterLastModified { get; } = "HideFooterLastModified"; } public static class Roles { /// /// Administrators can do anything. Add, edit, delete, pages, users, etc. /// public const string Administrator = "Administrator"; /// /// Read-only user with a profile. /// public const string Member = "Member"; /// /// Contributor can add and edit pages. /// public const string Contributor = "Contributor"; /// /// Moderators can add, edit and delete pages. /// public const string Moderator = "Moderator"; } } }