Created
December 6, 2010 10:08
-
-
Save arghav/730093 to your computer and use it in GitHub Desktop.
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
| //Security Routes | |
| $collection->add('_security_login', new Route('/login', array( | |
| '_controller' => 'DoctrineUserBundle:Security:login', | |
| ))); | |
| $collection->add('_security_check', new Route('/login_check', array( | |
| '_controller' => 'DoctrineUserBundle:Security:login', | |
| ))); | |
| $collection->add('_security_logout', new Route('/logout', array( | |
| '_controller' => 'DoctrineUserBundle:Security:logout', | |
| ))); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment