mirror of
https://github.com/Sonarr/Sonarr.git
synced 2024-10-31 16:02:29 +01:00
15 lines
385 B
JavaScript
15 lines
385 B
JavaScript
"use strict";
|
|
define(['app'], function () {
|
|
NzbDrone.Release.Model = Backbone.Model.extend({
|
|
/* mutators: {
|
|
seasonNumber: function () {
|
|
return this.get('episode').seasonNumber;
|
|
},
|
|
|
|
paddedEpisodeNumber: function () {
|
|
return this.get('episode').episodeNumber.pad(2);
|
|
}
|
|
}*/
|
|
});
|
|
});
|