mirror of
https://github.com/discourse/discourse.git
synced 2024-12-26 04:43:42 +08:00
17 lines
246 B
JavaScript
17 lines
246 B
JavaScript
|
export default {
|
||
|
resource: "admin.adminPlugins",
|
||
|
|
||
|
path: "/plugins",
|
||
|
|
||
|
map() {
|
||
|
this.route(
|
||
|
"discourse-automation",
|
||
|
|
||
|
function () {
|
||
|
this.route("new");
|
||
|
this.route("edit", { path: "/:id" });
|
||
|
}
|
||
|
);
|
||
|
},
|
||
|
};
|