mirror of
https://github.com/fergalmoran/dss.git
synced 2026-01-06 08:54:12 +00:00
12 lines
379 B
CoffeeScript
Executable File
12 lines
379 B
CoffeeScript
Executable File
define ['models/user/userCollection', 'app.lib/backbone.dss.model'],
|
|
(UserCollection, DssModel) ->
|
|
class UserItem extends DssModel
|
|
urlRoot: com.podnoms.settings.urlRoot + "user/"
|
|
relations: [
|
|
type: Backbone.Many
|
|
key: "followers"
|
|
relatedModel: Backbone.Self
|
|
collectionType: UserCollection
|
|
]
|
|
|
|
UserItem |