2013-06-25 07:21:10 +00:00
|
|
|
|
"use strict";
|
|
|
|
|
|
|
|
|
|
define(
|
|
|
|
|
[
|
|
|
|
|
'backbone',
|
|
|
|
|
'Quality/QualityProfileModel'
|
|
|
|
|
], function (Backbone, QualityProfileModel) {
|
|
|
|
|
|
|
|
|
|
return Backbone.Collection.extend({
|
|
|
|
|
model: QualityProfileModel,
|
2013-09-14 07:10:19 +00:00
|
|
|
|
url : window.NzbDrone.ApiRoot + '/qualityprofiles/schema'
|
2013-06-25 07:21:10 +00:00
|
|
|
|
});
|
|
|
|
|
});
|