====IsUser==== The **isuser** [[pathsecurity|access control]] rule allows access to a resource if they are signed in as a specific user. This is often used to protect specific functions from certain users with elevated permissions. ===Properties=== **list**: A list of user names. \\ **deny**: If true, this acts as a **blacklist** rather than a whitelist, denying access to the specified users. ===Example=== { "type": "isuser", "list": ["admin"] } //This restricts access to only the default 'admin' account - other superuser accounts will not be able to access the resource.//