function stripe_customer_permission in Stripe 7
Implements hook_permission().
File
- stripe_customer/
stripe_customer.module, line 53  - Provides integration with Stripe and Drupal Users as Customers.
 
Code
function stripe_customer_permission() {
  return array(
    'administer stripe customers' => array(
      'title' => t('Administer Stripe customer data'),
      'description' => t('Allows access to view Stripe customer data.'),
    ),
  );
}