mirror of
https://github.com/lidarr/lidarr.git
synced 2025-07-12 16:13:58 -07:00
12 lines
371 B
JavaScript
12 lines
371 B
JavaScript
define(['app'], function (app) {
|
|
NzbDrone.Missing.MissingModel = Backbone.Model.extend({
|
|
mutators: {
|
|
bestDateString : function () {
|
|
return bestDateString(this.get('airDate'));
|
|
},
|
|
paddedEpisodeNumber: function () {
|
|
return this.get('episodeNumber');
|
|
}
|
|
}
|
|
});
|
|
});
|