You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
24 lines
767 B
24 lines
767 B
/// <reference path="../app.js" />
|
|
/// <reference path="RootDir/RootDirCollection.js" />
|
|
/// <reference path="../Quality/qualityProfileCollection.js" />
|
|
NzbDrone.AddSeries.SearchResultModel = Backbone.Model.extend({
|
|
mutators: {
|
|
seriesYear: function () {
|
|
var date = Date.utc.create(this.get('firstAired')).format('({yyyy})');
|
|
|
|
//don't append year, if the series name already has the name appended.
|
|
if (this.get('seriesName').endsWith(date)) {
|
|
return "";
|
|
} else {
|
|
return date;
|
|
}
|
|
}
|
|
},
|
|
|
|
defaults: {
|
|
qualityProfiles: new NzbDrone.Quality.QualityProfileCollection(),
|
|
rootFolders: new NzbDrone.AddSeries.RootDirCollection()
|
|
}
|
|
|
|
});
|