Hi everyone,
I’m developing a Forge app with an action that can be added to Automation rules (Space settings → Automation → Create rule). I’m using Custom UI for the action configuration.
I want this feature to be available only for users with the Advanced license capability. I’ve already enabled editions in my manifest:
app:
licensing:
enabled: true
editionsEnabled: true
In most modules, I can access the license using view.getContext(), where license.capabilitySet is available (e.g. "standard" or "advanced").
However, in the Automation action configuration UI, license does not have capabilitySet property. Am I missing something, or is this expected behavior for Automation modules?
Thanks!