mirror of
https://github.com/fergalmoran/dss.git
synced 2025-12-31 05:58:16 +00:00
12 lines
413 B
CoffeeScript
Executable File
12 lines
413 B
CoffeeScript
Executable File
define ['backbone', 'models/user/userItem', 'app.lib/backbone.dss.model.collection'], \
|
|
(Backbone, UserItem, DssCollection) ->
|
|
class UserCollection extends DssCollection
|
|
page: 0
|
|
limit: 20
|
|
model: UserItem
|
|
url: ->
|
|
com.podnoms.settings.urlRoot + "user/?limit=" + @limit + "&offset=" + Math.max(@page-1, 0) * @limit
|
|
|
|
UserCollection
|
|
|