mirror of
https://github.com/lidarr/Lidarr
synced 2024-12-26 01:27:00 +00:00
10 lines
265 B
JavaScript
10 lines
265 B
JavaScript
'use strict';
|
||
define(
|
||
[
|
||
'Settings/Notifications/Model'
|
||
], function (NotificationModel) {
|
||
return Backbone.Collection.extend({
|
||
url : window.ApiRoot + '/notification',
|
||
model: NotificationModel
|
||
});
|
||
});
|