Lidarr/NzbDrone.Backbone/Calendar/CalendarCollection.js

6 lines
244 B
JavaScript
Raw Normal View History

define(['app', 'Calendar/CalendarModel'], function () {
NzbDrone.Calendar.CalendarCollection = Backbone.Collection.extend({
url: NzbDrone.Constants.ApiRoot + '/calendar',
model: NzbDrone.Calendar.CalendarModel
});
});