Skip to content

Instantly share code, notes, and snippets.

@thePunderWoman
Created February 15, 2013 22:50
Show Gist options
  • Save thePunderWoman/4964242 to your computer and use it in GitHub Desktop.
Save thePunderWoman/4964242 to your computer and use it in GitHub Desktop.
context.MapRoute(
"v2API2",
"v2/{action}/{id}",
new { controller = "v2", id = UrlParameter.Optional }
);
context.MapRoute(
"ordersAPI",
"orders/{action}/{id}",
new { controller = "orders", id = UrlParameter.Optional }
);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment