diff --git a/index.html b/index.html index 30a078c..6ec1eb7 100644 --- a/index.html +++ b/index.html @@ -125,9 +125,9 @@ We will assign access with allow_group() function.

$this->aauth->allow_group('hobbits','immortality'); -

Wait a minute! Hobbits should not have immortality. We need to fix this, we can use deny() to remove the permission.

+

Wait a minute! Hobbits should not have immortality. We need to fix this, we can use deny_group() to remove the permission.

-
$this->aauth->deny('hobbits','immortality');
+
$this->aauth->deny_group('hobbits','immortality');

Grant User Permissions