mirror of
https://github.com/lidarr/lidarr.git
synced 2025-07-15 09:33:52 -07:00
18 lines
No EOL
373 B
JavaScript
18 lines
No EOL
373 B
JavaScript
window.ProfileCollection = Backbone.Collection.extend({
|
|
|
|
model: Profile,
|
|
|
|
url: '/api/qualityprofiles',
|
|
|
|
search: function (searchTerm, options) {
|
|
|
|
var self = this;
|
|
this.fetch({
|
|
success: function () {
|
|
if (options.success) {
|
|
options.success();
|
|
}
|
|
}
|
|
});
|
|
}
|
|
}); |