mirror of
https://github.com/Sonarr/Sonarr
synced 2024-12-26 09:47:39 +00:00
11 lines
243 B
JavaScript
11 lines
243 B
JavaScript
"use strict";
|
|
define(['app', 'Shared/NotificationModel'], function () {
|
|
|
|
var notificationCollection = Backbone.Collection.extend({
|
|
model: NzbDrone.Shared.NotificationModel
|
|
});
|
|
|
|
return new notificationCollection();
|
|
});
|
|
|
|
|