mirror of
https://github.com/fergalmoran/dss.git
synced 2026-01-04 16:04:35 +00:00
11 lines
419 B
CoffeeScript
Executable File
11 lines
419 B
CoffeeScript
Executable File
define ['app.lib/backbone.dss.model'], \
|
|
(DSSModel) ->
|
|
class CommentItem extends DSSModel
|
|
urlRoot: com.podnoms.settings.urlRoot + "comments/"
|
|
defaults:
|
|
avatar_image: com.podnoms.settings.avatarImage
|
|
user_name: com.podnoms.settings.userName
|
|
user_url: com.podnoms.settings.userUrl
|
|
date_created: ""
|
|
|
|
CommentItem |