You are here

function login_destination_permission in Login Destination 7

Implements hook_permission().

File

./login_destination.module, line 40
Control where users are directed to, once they login

Code

function login_destination_permission() {
  return array(
    'administer login destination settings' => array(
      'title' => t('Administer Login Destination settings'),
    ),
  );
}