15 lines
342 B
JavaScript
15 lines
342 B
JavaScript
export default {
|
|
resource: "admin.adminPlugins",
|
|
|
|
path: "/plugins",
|
|
|
|
map() {
|
|
this.route("discourse-ai", { path: "discourse-ai" }, function () {
|
|
this.route("ai-personas", { path: "ai_personas" }, function () {
|
|
this.route("new", { path: "/new" });
|
|
this.route("show", { path: "/:id" });
|
|
});
|
|
});
|
|
},
|
|
};
|