mirror of
https://github.com/Ombi-app/Ombi.git
synced 2025-08-14 02:26:55 -07:00
User management, migration and newsletter
This commit is contained in:
parent
11ecbf04f6
commit
42c437905e
26 changed files with 888 additions and 389 deletions
|
@ -4,9 +4,10 @@ namespace PlexRequests.Helpers
|
|||
{
|
||||
public class UserClaims
|
||||
{
|
||||
public const string Admin = "Admin"; // Can do everything including creating new users and editing settings
|
||||
public const string PowerUser = "PowerUser"; // Can only manage the requests, approve etc.
|
||||
public const string User = "User"; // Can only request
|
||||
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 User = nameof(User); // Can only request
|
||||
public const string Newsletter = nameof(Newsletter); // Has newsletter feature enabled
|
||||
}
|
||||
}
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue