2013-06-22 06:24:24 +00:00
|
|
|
|
'use strict';
|
2013-04-19 06:38:26 +00:00
|
|
|
|
define(['app', 'Shared/NotificationModel'], function () {
|
2013-02-14 17:18:29 +00:00
|
|
|
|
|
2013-04-19 15:33:55 +00:00
|
|
|
|
var notificationCollection = Backbone.Collection.extend({
|
2013-05-03 23:50:22 +00:00
|
|
|
|
model: NzbDrone.Shared.NotificationModel
|
2013-02-14 17:18:29 +00:00
|
|
|
|
});
|
|
|
|
|
|
2013-04-19 15:33:55 +00:00
|
|
|
|
return new notificationCollection();
|
2013-02-14 17:18:29 +00:00
|
|
|
|
});
|
|
|
|
|
|
|
|
|
|
|