You are here

function tfa_basic_permission in TFA Basic plugins 7

Implements hook_permission().

File

./tfa_basic.module, line 6

Code

function tfa_basic_permission() {
  return array(
    'setup own tfa' => array(
      'title' => t('Set up TFA for account'),
      'description' => t('Allow users to set up TFA for their account. Users with "administer users" permission can edit other account\'s TFA.'),
    ),
  );
}