mirror of
https://gh.wpcy.net/https://github.com/discourse/discourse.git
synced 2026-05-21 05:54:19 +08:00
15 lines
270 B
JavaScript
Vendored
15 lines
270 B
JavaScript
Vendored
export default {
|
|
resource: "admin.adminPlugins.show",
|
|
|
|
path: "/plugins",
|
|
|
|
map() {
|
|
this.route(
|
|
"discourse-gamification-leaderboards",
|
|
{ path: "leaderboards" },
|
|
function () {
|
|
this.route("show", { path: "/:id" });
|
|
}
|
|
);
|
|
},
|
|
};
|