mirror of https://github.com/lidarr/Lidarr
19 lines
432 B
JavaScript
19 lines
432 B
JavaScript
'use strict';
|
|
define(
|
|
[
|
|
'backbone',
|
|
'Quality/QualityProfileModel'
|
|
], function (Backbone, QualityProfileModel) {
|
|
|
|
var QualityProfileCollection = Backbone.Collection.extend({
|
|
model: QualityProfileModel,
|
|
url : window.ApiRoot + '/qualityprofiles'
|
|
});
|
|
|
|
var profiles = new QualityProfileCollection();
|
|
|
|
profiles.fetch();
|
|
|
|
return profiles;
|
|
});
|