mirror of
https://github.com/Radarr/Radarr.git
synced 2024-11-13 22:43:35 +01:00
14 lines
382 B
JavaScript
14 lines
382 B
JavaScript
"use strict";
|
|
define(['app'], function () {
|
|
NzbDrone.Missing.MissingModel = Backbone.Model.extend({
|
|
mutators: {
|
|
bestDateString : function () {
|
|
return bestDateString(this.get('airDate'));
|
|
},
|
|
paddedEpisodeNumber: function () {
|
|
return this.get('episodeNumber');
|
|
}
|
|
}
|
|
});
|
|
});
|