mirror of
https://github.com/lidarr/Lidarr
synced 2025-02-04 05:21:41 +00:00
9 lines
277 B
JavaScript
9 lines
277 B
JavaScript
/// <reference path="../app.js" />
|
|
NzbDrone.AddSeries.SearchResultModel = Backbone.Model.extend({
|
|
mutators: {
|
|
seriesYear: function () {
|
|
var date = Date.utc.create(this.get('firstAired'));
|
|
return date.format('{yyyy}');
|
|
}
|
|
}
|
|
});
|