OSDN Git Service

add profiler
[pettanr/pettanr.git] / app / assets / javascripts / models / license_group.js.coffee
1 class Pettanr.LicenseGroup extends Peta.Template\r
2   @singular: () ->\r
3     'LicenseGroup'\r
4   \r
5   @plural: () ->\r
6     'LicenseGroups'\r
7   \r
8   defaults: {\r
9     id: null\r
10   } \r
11   \r
12   initialize: () ->\r
13     if @id\r
14       @url = @url + @id\r
15   \r
16 class Pettanr.LicenseGroup.Collection extends Backbone.Collection\r
17   model: Pettanr.LicenseGroup\r
18   url: '/license_groups'\r