Files

24 lines
612 B
JavaScript
Raw Permalink Normal View History

export default {
resource: "admin.adminPlugins.show",
path: "/plugins",
map() {
this.route("discourse-ai-personas", { path: "ai-personas" }, function () {
this.route("new");
this.route("show", { path: "/:id" });
});
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" });
});
2024-11-29 06:26:48 +11:00
this.route("discourse-ai-usage", { path: "ai-usage" });
},
};