function samlauth_permission in SAML Authentication 7
Implements hook_permission().
File
- ./
samlauth.module, line 73 - Provides SAML authentication capabilities.
Code
function samlauth_permission() {
return array(
'view sp metadata' => array(
'title' => t('View SP metadata'),
'description' => t('View the SP metadata XML at /saml/metadata'),
),
'configure saml' => array(
'title' => t('Configure SAML'),
'description' => t('Configure SAML authentication behaviors'),
),
);
}