Skip to content

Commit e333be2

Browse files
committed
Fixed old fields
1 parent aa5017d commit e333be2

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

IHP/DataSync/REST/Controller.hs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -151,8 +151,8 @@ buildDynamicQueryFromRequest table = DynamicSQLQuery
151151
, selectedColumns = paramOrDefault SelectAll "fields"
152152
, whereCondition = Nothing
153153
, orderByClause = paramList "orderBy"
154-
, limitClause = Nothing
155-
, offsetClause = Nothing
154+
, limit = paramOrNothing "limit"
155+
, offset = paramOrNothing "offset"
156156
}
157157

158158
instance ParamReader SelectedColumns where

0 commit comments

Comments
 (0)