Bolt\Controller\Async\Stack::addRoutes PHP Method

addRoutes() protected method

protected addRoutes ( Silex\ControllerCollection $c )
$c Silex\ControllerCollection
    protected function addRoutes(ControllerCollection $c)
    {
        $c->post('/stack/add', 'add')->assert('filename', '.*')->bind('stack/add');
        $c->get('/stack/show', 'show')->bind('stack/show');
    }