1
0
mirror of https://github.com/Radarr/Radarr.git synced 2026-04-22 22:15:17 -04:00
Files
Radarr/UI/Settings/Notifications/Collection.js
T
2013-09-14 00:10:19 -07:00

11 lines
274 B
JavaScript

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