mirror of
https://github.com/lidarr/lidarr.git
synced 2025-07-12 16:13:58 -07:00
17 lines
419 B
JavaScript
17 lines
419 B
JavaScript
'use strict';
|
||
define(
|
||
[
|
||
'backbone'
|
||
], function (Backbone) {
|
||
return Backbone.Model.extend({
|
||
|
||
mutators: {
|
||
thirtyMinuteSize: function () {
|
||
return this.get('maxSize') * 30;
|
||
},
|
||
sixtyMinuteSize : function () {
|
||
return this.get('maxSize') * 60;
|
||
}
|
||
}
|
||
});
|
||
});
|