mirror of
https://github.com/Sonarr/Sonarr.git
synced 2024-12-29 02:57:15 +02:00
6 lines
244 B
JavaScript
6 lines
244 B
JavaScript
|
define(['app', 'Calendar/CalendarModel'], function () {
|
||
|
NzbDrone.Calendar.CalendarCollection = Backbone.Collection.extend({
|
||
|
url: NzbDrone.Constants.ApiRoot + '/calendar',
|
||
|
model: NzbDrone.Calendar.CalendarModel
|
||
|
});
|
||
|
});
|