Added the functionality for the admin to clear the issues.

This commit is contained in:
tidusjar 2016-03-09 17:19:49 +00:00
parent 0556e4d32b
commit 9ef618af4b
5 changed files with 77 additions and 18 deletions

View file

@ -33,10 +33,11 @@ namespace PlexRequests.Store
public enum IssueState
{
WrongAudio,
NoSubtitles,
WrongContent,
PlaybackIssues,
Other
None = 99,
WrongAudio = 0,
NoSubtitles = 1,
WrongContent = 2,
PlaybackIssues = 3,
Other = 4 // Provide a message
}
}