mirror of
https://github.com/Sonarr/Sonarr.git
synced 2024-12-18 23:48:35 +02: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'
|
||
|
});
|
||
|
});
|