2013-06-25 02:41:59 +03:00
|
|
|
'use strict';
|
|
|
|
define(
|
|
|
|
[
|
|
|
|
'Settings/Notifications/Model'
|
|
|
|
], function (NotificationModel) {
|
|
|
|
return Backbone.Collection.extend({
|
|
|
|
url : window.ApiRoot + '/notification',
|
|
|
|
model: NotificationModel
|
|
|
|
});
|
2013-05-20 07:19:54 +03:00
|
|
|
});
|