Can users have their own profile/dashboard from where they can edit their details.
For example : Vendors listing their service on the App which they can edit & update without having everyone else have edit access ?
Solved! Go to Solution.
Hi @Pharank12
I would recommend using a table USER with their information to manage your situation.
About update permission, I would go for a combination of:
1) Managing the table settings:
With this expression:
SWITCH(USERROLE(),
"Admin", "ALL_CHANGES",
"UPDATES_ONLY"
)
This ensures a kind of "super-admin" create items, and other users to just update information over this table
2) Using a per-row restriction, from the table view:
Note: this assumes the column "key" in my example is the user's email.
User | Count |
---|---|
17 | |
11 | |
7 | |
4 | |
3 |