Skip to content

Instantly share code, notes, and snippets.

@eyedol
Created October 8, 2013 22:17
Show Gist options
  • Save eyedol/6892764 to your computer and use it in GitHub Desktop.
Save eyedol/6892764 to your computer and use it in GitHub Desktop.
media route
Route::set('media','api/v2/media/<media_id>/<controller>(/<id>)',
array(
'media_id' => '\d+',
'id' => '\d+'
))
->defaults(array(
'action' => 'index',
'controller' => 'Media',
'directory' => 'Api'
));
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment