mirror of
https://github.com/Radarr/Radarr
synced 2026-02-16 19:53:52 +01:00
7 lines
No EOL
227 B
JavaScript
7 lines
No EOL
227 B
JavaScript
var Backbone = require('backbone');
|
|
var NotificationModel = require('./NotificationModel');
|
|
|
|
module.exports = Backbone.Collection.extend({
|
|
model : NotificationModel,
|
|
url : window.NzbDrone.ApiRoot + '/notification'
|
|
}); |