FIX: Redirect to the pricing table page when enabled (#239)
If the pricing table is enabled the `/s` route should redirect to the pricing table route and vice versa. Co-authored-by: Jarek Radosz <[email protected]>
This commit is contained in:
co-authored by
Jarek Radosz
parent
937d099692
commit
eecb17698f
@@ -1,3 +1,16 @@
|
||||
import Route from "@ember/routing/route";
|
||||
import { service } from "@ember/service";
|
||||
|
||||
export default Route.extend();
|
||||
export default class SubscribeRoute extends Route {
|
||||
@service router;
|
||||
@service siteSettings;
|
||||
|
||||
beforeModel() {
|
||||
const pricingTableEnabled =
|
||||
this.siteSettings.discourse_subscriptions_pricing_table_enabled;
|
||||
|
||||
if (pricingTableEnabled) {
|
||||
this.router.transitionTo("subscriptions");
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
@@ -0,0 +1,16 @@
|
||||
import Route from "@ember/routing/route";
|
||||
import { service } from "@ember/service";
|
||||
|
||||
export default class SubscriptionsRoute extends Route {
|
||||
@service router;
|
||||
@service siteSettings;
|
||||
|
||||
beforeModel() {
|
||||
const pricingTableEnabled =
|
||||
this.siteSettings.discourse_subscriptions_pricing_table_enabled;
|
||||
|
||||
if (!pricingTableEnabled) {
|
||||
this.router.transitionTo("subscribe");
|
||||
}
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user