mirror of
https://github.com/lidarr/lidarr.git
synced 2025-07-13 00:23:59 -07:00
18 lines
449 B
JavaScript
18 lines
449 B
JavaScript
'use strict';
|
|
define(['app'], function () {
|
|
NzbDrone.Quality.QualitySizeModel = Backbone.Model.extend({
|
|
|
|
initialize: function () {
|
|
this.validators = {};
|
|
},
|
|
|
|
mutators: {
|
|
thirtyMinuteSize: function () {
|
|
return this.get('maxSize') * 30;
|
|
},
|
|
sixtyMinuteSize : function () {
|
|
return this.get('maxSize') * 60;
|
|
}
|
|
}
|
|
});
|
|
});
|