mirror of
https://github.com/Readarr/Readarr.git
synced 2026-04-20 21:54:25 -04:00
10 lines
277 B
JavaScript
10 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}');
|
|
}
|
|
}
|
|
});
|