You are here

function purge_perm in Purge 6

Implementation of hook_perm().

Allows admins to control access to purge settings.

File

./purge.module, line 60
Purge clears url's from reverse proxy caches like Varnish and Squid by issuing HTTP PURGE requests.

Code

function purge_perm() {
  return array(
    'administer purge',
  );
}