Skip to content

Instantly share code, notes, and snippets.

@ReactiveRaven
Created March 20, 2013 17:21
Show Gist options
  • Save ReactiveRaven/5206542 to your computer and use it in GitHub Desktop.
Save ReactiveRaven/5206542 to your computer and use it in GitHub Desktop.
/**
* @Route("/user");
*/
class Users
{
/**
* @Route("/{user_slug}")
* @ParamConverter("user", options={"mapping": {"user_slug": "slug"}})
* @Template
* @Secure("ROLE_ADMIN")
*/
public function adminViewAction(Entity\User $user)
{
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment