You are here

function gdpr_consent_permission in GDPR Consent 7

Implements hook_perm().

File

./gdpr_consent.module, line 255
Module file for GDPR Consent.

Code

function gdpr_consent_permission() {
  return array(
    'administer gdpr consent' => array(
      'title' => t('Administer GDPR consent'),
    ),
    'view gdpr consent' => array(
      'title' => t('View GDPR consent'),
    ),
  );
}