mirror of
https://github.com/Sonarr/Sonarr.git
synced 2026-04-24 22:36:19 -04:00
12 lines
301 B
JavaScript
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
|
|
});
|
|
});
|