mirror of
https://github.com/discourse/discourse-ai.git
synced 2025-02-08 20:44:42 +00:00
11 lines
205 B
JavaScript
11 lines
205 B
JavaScript
|
export default {
|
||
|
resource: "admin.dashboard",
|
||
|
path: "/dashboard",
|
||
|
map() {
|
||
|
this.route("admin.dashboardSentiment", {
|
||
|
path: "/dashboard/sentiment",
|
||
|
resetNamespace: true,
|
||
|
});
|
||
|
},
|
||
|
};
|