Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save donvitonet/5236535 to your computer and use it in GitHub Desktop.
Save donvitonet/5236535 to your computer and use it in GitHub Desktop.
public $components = array(
'Session'
,'Mensagem'
,'Auth' => array(
'loginAction' => array(
'controller' => 'usuarios'
,'action' => 'login'
)
,'loginRedirect' => array(
'controller' => 'usuarios'
,'action' => 'principal'
)
,'logoutRedirect' => array(
'controller' => 'usuarios'
,'action' => 'login'
)
,'authenticate' => array(
'Form' => array(
'userModel' => 'Usuario'
,'fields' => array(
'password' => 'senha'
,'username' => 'email'
)
,'scope' => array(
'Usuario.bloqueado' => 0
)
)
)
,'authorize' => array( 'Controller' )
)
);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment