discourse/app/assets/javascripts/discourse/adapters/build-plugin.js.es6

10 lines
252 B
Text
Raw Normal View History

import RestAdapter from 'discourse/adapters/rest';
export default function buildPluginAdapter(pluginName) {
return RestAdapter.extend({
pathFor(store, type) {
return "/admin/plugins/" + pluginName + this._super(store, type);
}
});
}