mirror of
https://github.com/Sonarr/Sonarr.git
synced 2024-11-01 00:12:30 +01:00
8 lines
247 B
JavaScript
8 lines
247 B
JavaScript
"use strict";
|
|
define(['app', 'Series/SeasonModel'], function () {
|
|
NzbDrone.Series.SeasonCollection = Backbone.Collection.extend({
|
|
url : NzbDrone.Constants.ApiRoot + '/season',
|
|
model: NzbDrone.Series.SeasonModel
|
|
});
|
|
});
|