mirror of
https://github.com/Sonarr/Sonarr.git
synced 2024-11-01 16:32:56 +01:00
11 lines
265 B
JavaScript
11 lines
265 B
JavaScript
'use strict';
|
||
define(
|
||
[
|
||
'Settings/Notifications/Model'
|
||
], function (NotificationModel) {
|
||
return Backbone.Collection.extend({
|
||
url : window.ApiRoot + '/notification',
|
||
model: NotificationModel
|
||
});
|
||
});
|