mirror of
https://github.com/Ombi-app/Ombi.git
synced 2025-07-31 03:50:08 -07:00
Made the search page all async goodness #278
This commit is contained in:
parent
05b219a351
commit
03ce361183
13 changed files with 432 additions and 183 deletions
|
@ -37,7 +37,9 @@ namespace PlexRequests.Core
|
|||
long AddRequest(RequestedModel model);
|
||||
Task<int> AddRequestAsync(RequestedModel model);
|
||||
RequestedModel CheckRequest(int providerId);
|
||||
Task<RequestedModel> CheckRequestAsync(int providerId);
|
||||
RequestedModel CheckRequest(string musicId);
|
||||
Task<RequestedModel> CheckRequestAsync(string musicId);
|
||||
|
||||
void DeleteRequest(RequestedModel request);
|
||||
Task DeleteRequestAsync(RequestedModel request);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue