You are here

function tfa_permission in Two-factor Authentication (TFA) 7.2

Same name and namespace in other branches
  1. 7 tfa.module \tfa_permission()

Implements hook_permission().

File

./tfa.module, line 46
Two-factor authentication for Drupal.

Code

function tfa_permission() {
  return array(
    'admin tfa settings' => array(
      'title' => t('Administer TFA'),
      'description' => t('Configure two-factor authentication settings.'),
      'restrict access' => TRUE,
    ),
  );
}