mirror of
https://github.com/Radarr/Radarr.git
synced 2024-11-13 22:43:35 +01:00
14 lines
307 B
JavaScript
14 lines
307 B
JavaScript
"use strict";
|
|
|
|
define(
|
|
[
|
|
'backbone',
|
|
'Quality/QualityProfileModel'
|
|
], function (Backbone, QualityProfileModel) {
|
|
|
|
return Backbone.Collection.extend({
|
|
model: QualityProfileModel,
|
|
url : window.ApiRoot + '/qualityprofiles/schema'
|
|
});
|
|
});
|