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