Bolt\Controller\Backend\Authentication::addRoutes PHP Method

addRoutes() protected method

protected addRoutes ( Silex\ControllerCollection $c )
$c Silex\ControllerCollection
    protected function addRoutes(ControllerCollection $c)
    {
        $c->get('/login', 'getLogin')->bind('login');
        $c->post('/login', 'postLogin')->bind('postLogin');
        $c->match('/logout', 'logout')->bind('logout');
        $c->get('/resetpassword', 'resetPassword')->bind('resetpassword');
    }