fix: pagination

This commit is contained in:
2019-08-03 00:54:10 +02:00
parent 881a335c90
commit 4fa8abea30

View File

@@ -14,7 +14,7 @@ data class Paginated<T: EntityI<*>>(
init {
if (offset < 0) error("offset must be greather or equal than 0")
if (limit < 1) error("limit must be greather than 1")
if (total < 1) error("total must be greather or equal than 0")
if (limit < 1) error("limit must be greather or equal than 1")
if (total < 0) error("total must be greather or equal than 0")
}
}