I’m building an app where anyone should be able to see the list of events, but only registered users can leave comments.
Here’s how I want it to work:
Event list: Public (visible to everyone).
Adding comments in the comments section: Only available to logged-in users.
→ Ideally, if a non-registered user tries to comment, they should see a prompt to log in or register.
Could you let me know if this is possible in Glide (free plan) and the best way to set it up?
I have a free plan now.
Set up your comments section with a container and inside this container a collection of comments and components that will allows actions/workflows (such as a button). Now set a visibility condition on the container that will display the container if user email (or row ID if you set those up in the Users table) is not empty.