discourse-subscriptions/assets/javascripts/discourse/discourse-patrons-route-map.js.es6
2019-10-16 14:15:01 +11:00

17 lines
417 B
JavaScript

export default {
resource: "admin.adminPlugins",
path: "/plugins",
map() {
this.route("discourse-patrons", function() {
this.route("dashboard");
this.route("products", function() {
this.route("show", { path: "/:product-id" });
});
this.route("plans", function() {
this.route("show", { path: "/:plan-id" });
});
this.route("subscriptions");
});
}
};