Allowing one single user to see every entry

Good afternoon team.

I developed a simple app which allows users to input data. There is also a security filter so users are unable to see what others uploaded (the security filter is the userโ€™s email).

The leader of the project wants to see what every other employee has uploaded. Is there a security filter to leave her out or am I going to develope a second app withour the security filter for her use?

0 1 116
1 REPLY 1

Steve
Platinum 4
Platinum 4

You could assign her the Admin role:

Then user USERROLE() in your security filter:

OR(
  ("admin" = USERROLE()),
  ([Email] = USEREMAIL())
)

See also:

Top Labels in this Space