You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Currently all the configured features are created in a subscription.
But this is not flexible as it doesn't permit to add or remove features and their prices.
Instead, we should save in the subscription a snapshot of the current configuration.
This way, when a new feature is added, if it is not present in the subscription, then it is not available to the user.
The problem is with the features that are in the subscription but are not in the configuration anymore: they are subscribed by the user, but in the code we cannot get them as they are not configured anymore (doing something like ->get('ads')->getInstantPrice('EUR', 'monthly') will not work if the feature ads is in the subscription but is not in the configuration).
So, we need to find a way to:
Maintain features in the subscription also if they aren't in the configuration anymore;
Currently all the configured features are created in a subscription.
But this is not flexible as it doesn't permit to add or remove features and their prices.
Instead, we should save in the subscription a snapshot of the current configuration.
This way, when a new feature is added, if it is not present in the subscription, then it is not available to the user.
The problem is with the features that are in the subscription but are not in the configuration anymore: they are subscribed by the user, but in the code we cannot get them as they are not configured anymore (doing something like
->get('ads')->getInstantPrice('EUR', 'monthly')
will not work if the featureads
is in the subscription but is not in the configuration).So, we need to find a way to:
This is linked to:
countable
#59The text was updated successfully, but these errors were encountered: