mirror of https://github.com/Sonarr/Sonarr
24 lines
576 B
JavaScript
24 lines
576 B
JavaScript
"use strict";
|
|
define(['app'], function () {
|
|
NzbDrone.Quality.QualityProfileModel = Backbone.Model.extend({
|
|
|
|
mutators: {
|
|
allowed: function () {
|
|
return _.where(this.get('qualities'), { allowed: true });
|
|
},
|
|
|
|
cutoffName: function () {
|
|
return _.findWhere(this.get('qualities'), { id: this.get('cutoff') }).name;
|
|
}
|
|
},
|
|
|
|
defaults: {
|
|
id : null,
|
|
name : '',
|
|
//'qualities.allowed': false,
|
|
cutoff: null
|
|
}
|
|
});
|
|
});
|
|
|