mirror of
https://github.com/samuelclay/NewsBlur.git
synced 2025-08-05 16:58:59 +00:00
11 lines
193 B
JavaScript
11 lines
193 B
JavaScript
![]() |
NEWSBLUR.Models.User = Backbone.Model.extend({
|
||
|
|
||
|
idAttribute: 'user_id'
|
||
|
|
||
|
});
|
||
|
|
||
|
NEWSBLUR.Collections.Users = Backbone.Collection.extend({
|
||
|
|
||
|
model : NEWSBLUR.Models.User
|
||
|
|
||
|
});
|