mirror of
https://github.com/Prowlarr/Prowlarr.git
synced 2025-09-26 20:11:49 +02:00
7 lines
227 B
JavaScript
7 lines
227 B
JavaScript
var Backbone = require('backbone');
|
|
var NotificationModel = require('./NotificationModel');
|
|
|
|
module.exports = Backbone.Collection.extend({
|
|
model : NotificationModel,
|
|
url : window.NzbDrone.ApiRoot + '/notification'
|
|
}); |