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