1
Bugs / record management doesn't have other fields to match than userid
can help me? I see in the documentation, there was a matched user field on record management that we can match for data permission, but unfortunately why the newest version 5.1.4 only has user id to be matched?
https://docs.radsystems.io/security/recordmanagement/4.png
In my case, user can has access to edit records in multiple areas:
table user_login (id, name, email, ...)
table user_has_areas (user_id, area_id)
table area (id, area_name, ...)
I need to prevent editing when someone direct call link edit like this:
http://localhost:8050/#/customer/edit/2
custom page validation only validate data upon modification submission, but the data still can be shown before save/submit. How can the users have eligibility on multiple area data to view and change?
Thank you.