allPermissions

abstract suspend fun allPermissions(): Map<String, Map<String, Boolean>>
abstract fun allPermissions(callback: (Map<String, Map<String, Boolean>>) -> Unit)

Evaluates all permissions granted to the logged-in member. Returns a Map> response indicating the member's permissions. Each boolean will be true if the member can perform the action, false otherwise.

If the member is not logged in, all values will be false.

Remember - authorization checks for sensitive actions should always occur on the backend as well.