Created
January 22, 2015 17:16
-
-
Save damianoporta/840cd5272f1acbd5d9a4 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
<?php | |
use Cake\Routing\Router; | |
Router::plugin('Administration', function ($routes) { | |
$routes->connect('/', ['controller' => 'Users', 'action' => 'login']); | |
$routes->fallbacks(); | |
}); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment