mirror of
https://github.com/Ombi-app/Ombi.git
synced 2025-07-16 02:02:55 -07:00
Fixed the sorting and filtering on the Movie Requests page, it all functions correctly now
This commit is contained in:
parent
5dc5122841
commit
7dd5805f3f
13 changed files with 257 additions and 202 deletions
|
@ -1,6 +1,7 @@
|
|||
using System.Collections.Generic;
|
||||
using System.Threading.Tasks;
|
||||
using Ombi.Core.Models.Requests;
|
||||
using Ombi.Core.Models.UI;
|
||||
using Ombi.Store.Entities;
|
||||
|
||||
namespace Ombi.Core.Engine.Interfaces
|
||||
|
@ -12,7 +13,7 @@ namespace Ombi.Core.Engine.Interfaces
|
|||
//Task<IEnumerable<T>> GetNewRequests();
|
||||
//Task<IEnumerable<T>> GetAvailableRequests();
|
||||
RequestCountModel RequestCount();
|
||||
Task<IEnumerable<T>> GetRequests(int count, int position);
|
||||
Task<RequestsViewModel<T>> GetRequests(int count, int position, OrderFilterModel model);
|
||||
Task<IEnumerable<T>> GetRequests();
|
||||
Task<bool> UserHasRequest(string userId);
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue