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
Where can validation rules for a given change be implemented in LiveStore, and where do they get executed (server, client)? For instance, how could such validation rules be implemented:
Global Uniqueness Checks: Checking if an email address is already taken across the entire user base.
Inventory Levels: Checking if stock is available before confirming an order.
Complex Permissions/ACLs: Validating if user A has permission based on rules involving groups or data user B owns, which user A might not have loaded.
Domain Rules: Validating if a change can be made only if X or Y is true in the current state.
reacted with thumbs up emoji reacted with thumbs down emoji reacted with laugh emoji reacted with hooray emoji reacted with confused emoji reacted with heart emoji reacted with rocket emoji reacted with eyes emoji
Uh oh!
There was an error while loading. Please reload this page.
Where can validation rules for a given change be implemented in LiveStore, and where do they get executed (server, client)? For instance, how could such validation rules be implemented:
All reactions