mirror of
https://github.com/Ombi-app/Ombi.git
synced 2025-07-08 06:00:50 -07:00
Added the functionality for the admin to clear the issues.
This commit is contained in:
parent
0556e4d32b
commit
9ef618af4b
5 changed files with 77 additions and 18 deletions
|
@ -184,7 +184,8 @@ namespace PlexRequests.UI.Modules
|
|||
Status = movieInfo.Status,
|
||||
RequestedDate = DateTime.Now,
|
||||
Approved = false,
|
||||
RequestedBy = Session[SessionKeys.UsernameKey].ToString()
|
||||
RequestedBy = Session[SessionKeys.UsernameKey].ToString(),
|
||||
Issues = IssueState.None,
|
||||
};
|
||||
|
||||
|
||||
|
@ -255,7 +256,8 @@ namespace PlexRequests.UI.Modules
|
|||
Status = showInfo.status,
|
||||
RequestedDate = DateTime.Now,
|
||||
Approved = false,
|
||||
RequestedBy = Session[SessionKeys.UsernameKey].ToString()
|
||||
RequestedBy = Session[SessionKeys.UsernameKey].ToString(),
|
||||
Issues = IssueState.None
|
||||
};
|
||||
|
||||
RequestService.AddRequest(showId, model);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue