mirror of
https://github.com/lidarr/lidarr.git
synced 2025-07-14 17:13:49 -07:00
cleaned up mutators
This commit is contained in:
parent
8841e43c25
commit
28c93aa947
5 changed files with 11 additions and 33 deletions
|
@ -1,4 +1,4 @@
|
|||
'use strict';
|
||||
'use strict';
|
||||
define(
|
||||
[
|
||||
'backbone',
|
||||
|
@ -52,24 +52,13 @@ define(
|
|||
isContinuing : function () {
|
||||
return this.get('status') === 'continuing';
|
||||
},
|
||||
shortDate : function () {
|
||||
var date = this.get('nextAiring');
|
||||
|
||||
if (!date) {
|
||||
return '';
|
||||
}
|
||||
|
||||
return Date.create(date).short();
|
||||
},
|
||||
route : function () {
|
||||
return '/series/details/' + this.get('titleSlug');
|
||||
//return '/series/details/' + this.get('id');
|
||||
},
|
||||
|
||||
qualityProfile: function () {
|
||||
|
||||
var profile = QualityProfileCollection.get(this.get('qualityProfileId'));
|
||||
|
||||
if (profile) {
|
||||
return profile.toJSON();
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue