mirror of
https://github.com/discourse/discourse-ai.git
synced 2025-02-16 08:24:45 +00:00
The initial setup done in fb0d56324f9139f432c8797f25c30151ae66723b clashed with other plugins, I found this when trying to do the same for Gamification. This uses a better routing setup and removes the need to define the config nav link for Settings -- that is always inserted. Relies on https://github.com/discourse/discourse/pull/26707
8 lines
194 B
JavaScript
8 lines
194 B
JavaScript
import DiscourseRoute from "discourse/routes/discourse";
|
|
|
|
export default class DiscourseAiAiPersonasRoute extends DiscourseRoute {
|
|
model() {
|
|
return this.store.findAll("ai-persona");
|
|
}
|
|
}
|