You are here

function sendgrid_integration_permission in SendGrid Integration 7

Same name and namespace in other branches
  1. 6 sendgrid_integration.module \sendgrid_integration_permission()

Implements hook_permissions().

File

./sendgrid_integration.module, line 60
Main module file for SendGrid Integration.

Code

function sendgrid_integration_permission() {
  return [
    'administer sendgrid settings' => [
      'title' => t('Administer SendGrid settings'),
      'description' => t('Configure SendGrid options like username and password'),
    ],
  ];
}