HI all,
I’m trying to create a calendar funtionality that
-
Allows each user to create and see only THEIR added events
-
allows them to share events with selected other users
For the first task, I think I need to create a slice of Calendar data and then write in the “Row filter condition” some kind logic that limits the view to the current user. I have a User slice called “currentUser”. I also have a “user_id” that is a UNIQUEID() and a “user_email” in the Users table.
I’ve written this in the Row filter condition, but it seems wrong:
IF((currentUser[user_id])=Users[user_id],TRUE,FALSE)