mirror of
https://github.com/Radarr/Radarr
synced 2024-12-27 10:19:41 +00:00
13 lines
307 B
JavaScript
13 lines
307 B
JavaScript
"use strict";
|
|
|
|
define(
|
|
[
|
|
'backbone',
|
|
'Quality/QualityProfileModel'
|
|
], function (Backbone, QualityProfileModel) {
|
|
|
|
return Backbone.Collection.extend({
|
|
model: QualityProfileModel,
|
|
url : window.ApiRoot + '/qualityprofiles/schema'
|
|
});
|
|
});
|