Access control list and globeadmin
Posted: Tue Nov 01, 2022 9:53 am
Hello,
I am using now the access control list which works as expected : I have adapted SQL clauses accordingly.
Ex of SQL clause :
When I am connected as globeadmin, I don't see any task because no task has been assigned to globeadmin. How can I desactivate this where clause when I am connected as globeadmin in order to see all data ?
There is maybe another way to implement access control list ? If yes, is there any example of that ?
Many thanks for your help.
Yves
I am using now the access control list which works as expected : I have adapted SQL clauses accordingly.
Ex of SQL clause :
Code: Select all
SELECT
status.*,
task.*
FROM
status
JOIN task ON task.tsk_status = status.status_id
WHERE
((task.tsk_assigned_to ='#USER_CODE#'))
There is maybe another way to implement access control list ? If yes, is there any example of that ?
Many thanks for your help.
Yves