Hi!
New to Glide here. I’m trying to figure out if the workflow that I need to create is even possible in Glide.
Is it possible to have a table that has Row Owners but also be able to access the data for a row in that table if the user has a specific key?
I’m trying to use the Row ID as this key. I assume the RowID is complex enough that no-one will guess it by chance, so using this for access seems safe enough.
I want to make an app that has users with accounts that can add entries about people. The users with accounts need to only be able to see the entries that they’ve created, hence the entries table has Row Owners.
Then these people (that have been added) need to access the data about them to add some more information about themselves, but only need to do this one (hence don’t need a user account). Right now I’m trying to use RowID to grant access to the form where the people can fill in their data.
I’m trying to accomplish this by creating two apps (one private another public), that link to the same database, but I’m running into the issue that since rows have owners, the anonymous users in the public app can’t access this data.
Can someone comment if there’s a way set this up or some other approach I could take?
Thanks!