function tokenauth_permission in Token authentication 7
Implements hook_permission().
File
- ./
tokenauth.module, line 15
Code
function tokenauth_permission() {
return array(
'access tokenauth' => array(
'title' => t('Use token authentication'),
'description' => t('Use URL tokens to access configured paths.'),
),
'administer tokenauth' => array(
'title' => t('Administer token authentication'),
'description' => t('Administer the configuration of Token Authentication.'),
),
);
}