Skip to content

Instantly share code, notes, and snippets.

@visualizeq
Created October 16, 2012 08:31
Show Gist options
  • Save visualizeq/3898052 to your computer and use it in GitHub Desktop.
Save visualizeq/3898052 to your computer and use it in GitHub Desktop.
Yii Controller AccessRules
public function accessRules()
{
return array(
array('allow',
'actions' => array('index'),
'users' => array('*'),
),
array('deny',
'actions' => array('*'),
'users' => array('*'),
),
);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment