4 permissions in this category
Configure FeatherZeroTrust settings
Manage FeatherZeroTrust
Run scans with FeatherZeroTrust
View FeatherZeroTrust scanner
How to check permissions in your code
use App\Helpers\PermissionHelper;
// Check if user has permission
if (PermissionHelper::hasPermission($userUuid, 'admin.featherzerotrust.configure')) {
// User has permission
}use App\Permissions;
// Use constant instead of string
if (PermissionHelper::hasPermission($userUuid, Permissions::ADMIN_FEATHERZEROTRUST_CONFIGURE)) {
// User has permission
}