Files
Prowlarr-Prowlarr/src/UI/Profile/ProfileCollection.js
Keivan Beigi 0ee5261a2a stripBom
2015-01-29 18:10:16 -08:00

19 lines
395 B
JavaScript

'use strict';
define(
[
'backbone',
'Profile/ProfileModel'
], function (Backbone, ProfileModel) {
var ProfileCollection = Backbone.Collection.extend({
model: ProfileModel,
url : window.NzbDrone.ApiRoot + '/profile'
});
var profiles = new ProfileCollection();
profiles.fetch();
return profiles;
});