Files

38 lines
1018 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("edit", { path: "/:id/edit" });
});
2024-05-13 12:46:42 -03:00
this.route("discourse-ai-llms", { path: "ai-llms" }, function () {
this.route("new");
this.route("edit", { path: "/:id/edit" });
2024-05-13 12:46:42 -03:00
});
2024-06-27 17:27:40 +10:00
this.route("discourse-ai-tools", { path: "ai-tools" }, function () {
this.route("new");
this.route("edit", { path: "/:id/edit" });
2024-06-27 17:27:40 +10:00
});
this.route("discourse-ai-spam", { path: "ai-spam" });
2024-11-29 06:26:48 +11:00
this.route("discourse-ai-usage", { path: "ai-usage" });
2025-01-21 12:23:19 -03:00
this.route(
"discourse-ai-embeddings",
{ path: "ai-embeddings" },
function () {
this.route("new");
this.route("edit", { path: "/:id/edit" });
}
);
this.route("discourse-ai-features", { path: "ai-features" }, function () {
this.route("edit", { path: "/:id/edit" });
});
},
};