Added in an audit table. Since we are now allowing multiple users to change and modify things we need to audit this.

This commit is contained in:
TidusJar 2016-05-16 00:16:19 -04:00
commit 79086dcf45
4 changed files with 32 additions and 3 deletions

View file

@ -4,9 +4,9 @@ namespace PlexRequests.Helpers
{
public class UserClaims
{
public const string Admin = "Admin";
public const string PowerUser = "PowerUser";
public const string User = "User";
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
}
}