diff --git a/acquia_purge.module b/acquia_purge.module
index 002c6df..af5e85f 100644
--- a/acquia_purge.module
+++ b/acquia_purge.module
@@ -8,6 +8,18 @@
  */
 
 /**
+ * Implements hook_permission().
+ */
+function acquia_purge_permission() {
+  return array(
+    'administer my module' =>  array(
+    'title' => t('Purge notification'),
+    'description' => t('Get a confirmation message on screen for all items that have been purged.'),
+    ),
+  );
+}
+
+/**
  * Implements hook_expire_cache().
  */
 function acquia_purge_expire_cache($paths) {
@@ -399,4 +411,4 @@ function acquia_purge_purge_paths($paths, $domains = NULL) {
     $results[] = acquia_purge_purge_path($path, $domains);
   }
   return !in_array(FALSE, $results);
-}
\ No newline at end of file
+}
