Is there a mechanism to pass extra parameters to Controller actions in Kohana?
Eg:
$config['article/([0-9]+)'] = array('path' => 'news/show/$1',
'params' => array(
'param1' => 'some_stuff',
));
The Kohana routing documentation doesn't seem to discuss this. But, is there a way to get this working.