I'm new to phalcon and i used to learn invo example application. In security.php i found :
$auth = $this->session->get('auth');
if (!$auth){
$role = 'Guests';
} else {
$role = 'Users';
}
are there any way to create user group with different assigned role like joomla? Thanks