Created
October 29, 2012 22:25
-
-
Save yahuarkuntur/3976942 to your computer and use it in GitHub Desktop.
Silex logout URL
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
$app['security.firewalls'] = array( | |
'login' => array( | |
'pattern' => '^/login$', | |
'anonymous' => true, | |
), | |
'admin' => array( | |
'pattern' => '^/admin', | |
'form' => array( | |
'login_path' => '/login', | |
'check_path' => '/admin/login_check'), | |
'logout' => array('logout_path' => '/admin_logout', 'target_url' => '/admin'), | |
'users' => $app->share(function () use ($app) { | |
return new UserProvider($app); | |
}), | |
), | |
); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
I have been trying to figure out how to do this for a while. Thank you!