mirror of
https://github.com/fergalmoran/Readarr.git
synced 2026-02-28 02:35:46 +00:00
14 lines
279 B
JavaScript
14 lines
279 B
JavaScript
'use strict';
|
|
|
|
define([
|
|
'backbone',
|
|
'Settings/Notifications/NotificationModel'
|
|
], function (Backbone, NotificationModel) {
|
|
|
|
return Backbone.Collection.extend({
|
|
model: NotificationModel,
|
|
url : window.NzbDrone.ApiRoot + '/notification'
|
|
|
|
});
|
|
});
|