mirror of
https://github.com/Prowlarr/Prowlarr
synced 2026-02-06 23:12:33 +01:00
13 lines
350 B
JavaScript
13 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;
|
|
});
|