2015-04-27 11:56:07 -04:00
|
|
|
import RestAdapter from "discourse/adapters/rest";
|
|
|
|
|
|
|
|
export default function buildPluginAdapter(pluginName) {
|
2023-03-17 08:25:05 -04:00
|
|
|
return class extends RestAdapter {
|
2015-06-30 12:14:22 -04:00
|
|
|
pathFor(store, type, findArgs) {
|
|
|
|
return (
|
2023-03-17 08:25:05 -04:00
|
|
|
"/admin/plugins/" + pluginName + super.pathFor(store, type, findArgs)
|
2015-06-30 12:14:22 -04:00
|
|
|
);
|
2023-03-17 08:25:05 -04:00
|
|
|
}
|
|
|
|
};
|
2015-04-27 11:56:07 -04:00
|
|
|
}
|