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

12 lines
290 B
Plaintext
Raw Normal View History

2018-06-15 11:03:24 -04:00
import RestAdapter from "discourse/adapters/rest";
export default function buildPluginAdapter(pluginName) {
return RestAdapter.extend({
pathFor(store, type, findArgs) {
2018-06-15 11:03:24 -04:00
return (
"/admin/plugins/" + pluginName + this._super(store, type, findArgs)
);
}
});
}