You are here

function deploy_remote_cc_permission in Deploy - Content Staging 7.3

Implements hook_permission().

File

modules/deploy_remote_cc/deploy_remote_cc.module, line 68
Remote Cache clear module.

Code

function deploy_remote_cc_permission() {
  return array(
    'clear remote caches' => array(
      'title' => t('Clear remote caches'),
    ),
  );
}