User management work

This commit is contained in:
Jamie.Rees 2016-10-25 14:20:27 +01:00
commit 0828756171
10 changed files with 209 additions and 57 deletions

View file

@ -7,6 +7,7 @@ namespace PlexRequests.Helpers
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 ReadOnlyUser = nameof(ReadOnlyUser); // Can only view stuff
public const string Newsletter = nameof(Newsletter); // Has newsletter feature enabled
}
}