mirror of
https://github.com/fergalmoran/Readarr.git
synced 2026-01-29 12:05:38 +00:00
14 lines
350 B
JavaScript
14 lines
350 B
JavaScript
define(['app', 'Quality/QualityProfileModel'], function () {
|
|
|
|
var qualityProfileCollection = Backbone.Collection.extend({
|
|
model:NzbDrone.Quality.QualityProfileModel,
|
|
url:NzbDrone.Constants.ApiRoot + '/qualityprofiles'
|
|
});
|
|
|
|
var profiles = new qualityProfileCollection();
|
|
|
|
profiles.fetch();
|
|
|
|
return profiles;
|
|
});
|