v0.0.390
All checks were successful
Build Docker and Deploy / Run goext test-suite (push) Successful in 3m26s
All checks were successful
Build Docker and Deploy / Run goext test-suite (push) Successful in 3m26s
This commit is contained in:
parent
9e586f7706
commit
c399fa42ae
@ -1,5 +1,5 @@
|
||||
package goext
|
||||
|
||||
const GoextVersion = "0.0.389"
|
||||
const GoextVersion = "0.0.390"
|
||||
|
||||
const GoextVersionTimestamp = "2024-02-21T16:10:28+0100"
|
||||
const GoextVersionTimestamp = "2024-02-21T16:11:15+0100"
|
||||
|
@ -36,10 +36,10 @@ func NewPaginateFilter(sql func(params PP) (filterClause string, joinClause stri
|
||||
}
|
||||
}
|
||||
|
||||
func NewSimplePaginateFilter(filterClause string, params PP, sort []FilterSort) PaginateFilter {
|
||||
func NewSimplePaginateFilter(filterClause string, filterParams PP, sort []FilterSort) PaginateFilter {
|
||||
return genericPaginateFilter{
|
||||
sql: func(params PP) (filterClause string, joinClause string, joinTables []string) {
|
||||
params.AddAll(params)
|
||||
sql: func(params PP) (string, string, []string) {
|
||||
params.AddAll(filterParams)
|
||||
return filterClause, "", nil
|
||||
},
|
||||
sort: func() []FilterSort {
|
||||
|
Loading…
Reference in New Issue
Block a user