1
0
mirror of https://github.com/Sonarr/Sonarr.git synced 2024-12-16 11:37:58 +02:00
Sonarr/UI/Quality/qualityProfileModel.js

23 lines
554 B
JavaScript
Raw Normal View History

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
}
});
});