mirror of
https://github.com/Ombi-app/Ombi.git
synced 2025-08-20 05:13:18 -07:00
All Sln changes
This commit is contained in:
parent
b5855f2644
commit
796f0fc188
615 changed files with 68 additions and 747 deletions
12
Ombi.Helpers/UserClaims.cs
Normal file
12
Ombi.Helpers/UserClaims.cs
Normal file
|
@ -0,0 +1,12 @@
|
|||
namespace Ombi.Helpers
|
||||
{
|
||||
public class UserClaims
|
||||
{
|
||||
public const string Admin = nameof(Admin); // Can do everything including creating new users and editing settings
|
||||
public const string PowerUser = nameof(PowerUser); // Can only manage the requests, approve etc.
|
||||
public const string RegularUser = nameof(RegularUser); // Can only request
|
||||
public const string ReadOnlyUser = nameof(ReadOnlyUser); // Can only view stuff
|
||||
public const string Newsletter = nameof(Newsletter); // Has newsletter feature enabled
|
||||
}
|
||||
}
|
||||
|
Loading…
Add table
Add a link
Reference in a new issue