mirror of
https://github.com/lidarr/lidarr.git
synced 2025-07-13 16:43:58 -07:00
24 lines
514 B
JavaScript
24 lines
514 B
JavaScript
'use strict';
|
|
define(['app'], function () {
|
|
NzbDrone.Series.SeasonModel = Backbone.Model.extend({
|
|
|
|
mutators: {
|
|
seasonTitle: function () {
|
|
var seasonNumber = this.get('seasonNumber');
|
|
|
|
if (seasonNumber === 0) {
|
|
return 'Specials';
|
|
}
|
|
|
|
return 'Season ' + seasonNumber;
|
|
}
|
|
},
|
|
|
|
defaults: {
|
|
seasonNumber: 0
|
|
}
|
|
});
|
|
|
|
return NzbDrone.Series.SeasonModel;
|
|
});
|
|
|