Fix sorting&paging on RDBMS store

This commit is contained in:
Denis Arh
2020-11-13 08:10:09 +01:00
parent 82fd6309e0
commit b7de337db9
42 changed files with 1206 additions and 1050 deletions
+1 -2
View File
@@ -36,8 +36,6 @@ type (
FieldName string `json:"fieldName,omitempty"`
Filter string `json:"filter"`
Sort string `json:"sort"`
// Check fn is called by store backend for each resource found function can
// modify the resource and return false if store should not return it
//
@@ -45,6 +43,7 @@ type (
Check func(*Attachment) (bool, error)
// Standard helpers for paging and sorting
filter.Sorting
filter.Paging
}