Skip to main content

Type Alias: HavePermissions()

HavePermissions = (permissions) => Promise<boolean>

Function

Checks if the current user has specific permissions.

This method verifies whether the logged-in user has any of the specified permissions, which control access to various features and actions in the system. It's useful for conditionally showing or enabling functionality based on user permissions.

Permission-based UI adaptation ensures users only see and access features they're authorized to use, providing a cleaner and more secure experience.

Parameters

permissions

Permission[]

Array of permission identifiers to check

Returns

Promise<boolean>

A promise resolving to true if the user has any of the specified permissions

Example

// Only show the export button if the user has export permissions
window.mimeeqApp.actions.havePermissions(['EXPORT_OBJ', 'EXPORT_STL'])
.then(canExport => {
document.getElementById('export-button').style.display =
canExport ? 'block' : 'none';
});