mirror of
https://github.com/Ombi-app/Ombi.git
synced 2025-07-16 02:02:55 -07:00
20 lines
No EOL
942 B
C#
20 lines
No EOL
942 B
C#
namespace Ombi.Helpers
|
|
{
|
|
public static class OmbiRoles
|
|
{
|
|
// DONT FORGET TO ADD TO IDENTITYCONTROLLER.CREATEROLES AND THE UI!
|
|
|
|
public const string Admin = nameof(Admin);
|
|
public const string AutoApproveMovie = nameof(AutoApproveMovie);
|
|
public const string AutoApproveTv = nameof(AutoApproveTv);
|
|
public const string AutoApproveMusic = nameof(AutoApproveMusic);
|
|
public const string PowerUser = nameof(PowerUser);
|
|
public const string RequestTv = nameof(RequestTv);
|
|
public const string RequestMovie = nameof(RequestMovie);
|
|
public const string RequestMusic = nameof(RequestMusic);
|
|
public const string Disabled = nameof(Disabled);
|
|
public const string ReceivesNewsletter = nameof(ReceivesNewsletter);
|
|
public const string ManageOwnRequests = nameof(ManageOwnRequests);
|
|
public const string EditCustomPage = nameof(EditCustomPage);
|
|
}
|
|
} |