As stated above, the power-up storage limit for cards/shared pair should be 4096. This sounds that it applies to the power-up generally speaking, not for each card. Is this the case? Couldn't find an answer anywhere. Thank you.
It's a bit more nuanced - it depends how you save your power-up data.
The limit is set for scope/visibility pair. It means that you have 4096 character limit for every unique pair. So answering your question, it depends how you store your power-up data.
For example, if you use:
t.set('card', 'shared', value);
The limit applies to one card in shared visibility, because you use card scope. But if you use:
t.set('board', 'shared', value);
Then the limit applies to whole board in shared visibility.
Scope can be: board, card, member or organization, and visibility can be shared or private.
Character limit being set for unique pair means that you have separate 4096 characters storage for the same scope but different visibility, for example:
t.set('board', 'shared', value);
and
t.set('board', 'private', value);
Hope it helps
My understanding it is per card.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.