Created
October 29, 2012 22:25
-
-
Save yahuarkuntur/3976942 to your computer and use it in GitHub Desktop.
Revisions
-
yahuarkuntur created this gist
Oct 29, 2012 .There are no files selected for viewing
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 charactersOriginal file line number Diff line number Diff line change @@ -0,0 +1,16 @@ $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); }), ), );