Finishing the library's items route

This commit is contained in:
Zoe Roux
2020-07-29 00:33:58 +02:00
parent e69eda8df3
commit 5b0b2fbb7b
10 changed files with 240 additions and 78 deletions
+1 -1
View File
@@ -45,7 +45,7 @@ namespace Kyoo.Controllers
public abstract Task<ICollection<T>> Search(string query);
public Task<ICollection<T>> GetAll(Expression<Func<T, bool>> where = null,
public virtual Task<ICollection<T>> GetAll(Expression<Func<T, bool>> where = null,
Sort<T> sort = default,
Pagination limit = default)
{