1
0
Fork 0
mirror of https://github.com/lidarr/Lidarr synced 2024-12-28 18:47:52 +00:00
Lidarr/UI/Settings/Notifications/Collection.js

8 lines
242 B
JavaScript
Raw Normal View History

2013-05-20 04:19:54 +00:00
"use strict";
2013-06-19 01:02:23 +00:00
define(['app', 'Settings/Notifications/Model'], function (App, NotificationModel) {
return Backbone.Collection.extend({
url : App.Constants.ApiRoot + '/notification',
model: NotificationModel
2013-05-20 04:19:54 +00:00
});
});