2019-09-13 22:56:28 -04:00
|
|
|
export default {
|
2019-09-14 02:53:07 -04:00
|
|
|
resource: "admin.adminPlugins",
|
|
|
|
path: "/plugins",
|
2019-09-13 22:56:28 -04:00
|
|
|
map() {
|
2019-09-23 01:01:03 -04:00
|
|
|
this.route("discourse-patrons", function() {
|
2019-10-08 06:59:20 -04:00
|
|
|
this.route("dashboard");
|
2019-09-23 01:01:03 -04:00
|
|
|
this.route("subscriptions");
|
2019-09-24 01:18:58 -04:00
|
|
|
this.route("plans", function() {
|
2019-09-24 06:44:51 -04:00
|
|
|
this.route("show", { path: "/:plan-id" });
|
2019-09-24 01:18:58 -04:00
|
|
|
});
|
2019-09-23 01:01:03 -04:00
|
|
|
});
|
2019-09-13 22:56:28 -04:00
|
|
|
}
|
|
|
|
};
|