implemented operation based permissions

This commit is contained in:
root
2025-12-24 19:25:54 -05:00
parent dcc9833338
commit 35691b2627

View File

@@ -85,4 +85,15 @@ class Module extends ModuleInstanceAbstract
'boot' => 'static/module.mjs',
];
}
public function permissions(): array
{
return [
'authentication_provider_oidc' => [
'label' => 'Access OIDC Authentication Provider',
'description' => 'View and access the OIDC authentication provider module',
'group' => 'Authentication Providers'
],
];
}
}