2022-03-25 12:18:54 +01:00
|
|
|
import Controller from "@ember/controller";
|
2022-09-23 15:52:05 +02:00
|
|
|
import { equal, or } from "@ember/object/computed";
|
2021-09-24 11:58:42 +02:00
|
|
|
|
|
|
|
export default Controller.extend({
|
2022-03-25 12:22:27 +01:00
|
|
|
businessSubscription: equal("subscriptionType", "business"),
|
2022-09-23 15:52:05 +02:00
|
|
|
communitySubscription: equal("subscriptionType", "community"),
|
2022-03-25 12:22:27 +01:00
|
|
|
standardSubscription: equal("subscriptionType", "standard"),
|
2022-09-23 15:54:43 +02:00
|
|
|
showApi: or("businessSubscription", "communitySubscription"),
|
2021-10-19 14:49:06 +02:00
|
|
|
});
|