mirror of
https://github.com/Prowlarr/Prowlarr.git
synced 2025-09-26 20:11:49 +02:00
11 lines
274 B
JavaScript
11 lines
274 B
JavaScript
'use strict';
|
||
define(
|
||
[
|
||
'Settings/Notifications/Model'
|
||
], function (NotificationModel) {
|
||
return Backbone.Collection.extend({
|
||
url : window.NzbDrone.ApiRoot + '/notification',
|
||
model: NotificationModel
|
||
});
|
||
});
|