mirror of
https://github.com/Radarr/Radarr
synced 2025-02-07 15:23:48 +00:00
10 lines
274 B
JavaScript
10 lines
274 B
JavaScript
'use strict';
|
||
define(
|
||
[
|
||
'Settings/Notifications/Model'
|
||
], function (NotificationModel) {
|
||
return Backbone.Collection.extend({
|
||
url : window.NzbDrone.ApiRoot + '/notification',
|
||
model: NotificationModel
|
||
});
|
||
});
|