1
0
mirror of https://github.com/Sonarr/Sonarr.git synced 2026-04-24 22:36:19 -04:00
Files
Sonarr/src/UI/Settings/Notifications/Collection.js
T
2013-10-08 22:48:40 -07:00

12 lines
301 B
JavaScript

'use strict';
define(
[
'Backbone',
'Settings/Notifications/Model'
], function (Backbone, NotificationModel) {
return Backbone.Collection.extend({
url : window.NzbDrone.ApiRoot + '/notification',
model: NotificationModel
});
});