Skip to content

Instantly share code, notes, and snippets.

@derekperkins
Created February 24, 2014 05:58
Show Gist options
  • Save derekperkins/9182655 to your computer and use it in GitHub Desktop.
Save derekperkins/9182655 to your computer and use it in GitHub Desktop.
CakePHP & mapResources for REST
Router::connect(
'/workspaces/:workspace_id/profiles',
[
'method' => 'GET',
'controller' => 'workspace_profiles',
'action' => 'profiles'
]);
Router::mapResources(['workspaces', 'profiles']);
Router::setExtensions(array('json', 'xml'));
Router::parseExtensions();
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment