2023-11-21 16:56:43 +11:00
|
|
|
export default {
|
2024-03-21 14:29:56 +10:00
|
|
|
resource: "admin.adminPlugins.show",
|
2023-11-21 16:56:43 +11:00
|
|
|
|
|
|
|
|
path: "/plugins",
|
|
|
|
|
|
|
|
|
|
map() {
|
2024-05-02 12:42:30 +10:00
|
|
|
this.route("discourse-ai-personas", { path: "ai-personas" }, function () {
|
|
|
|
|
this.route("new");
|
|
|
|
|
this.route("show", { path: "/:id" });
|
2023-11-21 16:56:43 +11:00
|
|
|
});
|
2024-05-13 12:46:42 -03:00
|
|
|
|
|
|
|
|
this.route("discourse-ai-llms", { path: "ai-llms" }, function () {
|
|
|
|
|
this.route("new");
|
|
|
|
|
this.route("show", { path: "/:id" });
|
|
|
|
|
});
|
2024-06-27 17:27:40 +10:00
|
|
|
|
|
|
|
|
this.route("discourse-ai-tools", { path: "ai-tools" }, function () {
|
|
|
|
|
this.route("new");
|
|
|
|
|
this.route("show", { path: "/:id" });
|
|
|
|
|
});
|
2023-11-21 16:56:43 +11:00
|
|
|
},
|
|
|
|
|
};
|