How to let user specific add/edit/delete only on their screen

Hi all - I’m trying to build functionality to let public users add/delete/edit items (rooms) in my app under collections, but when I allow that action it overwrites it for everyone.

I’m not sure if i need to add a breadcrumb or if I’m missing something for those rooms. Those rooms aren’t user specific, but i want them to be able to add a room, delete a room, or edit something just for their page.

Any thoughts?
Thanks!

You need to add a condition to your action logic so that it only can be carried out if the user is the signed in user. Typically is the User Email > is the signed in user or if the User ID > is > User > Row ID.

Like this;

1 Like