Skip to content

Instantly share code, notes, and snippets.

@creaux
Created February 6, 2015 09:21
Show Gist options
  • Save creaux/7ae09e30229c13c2ce5a to your computer and use it in GitHub Desktop.
Save creaux/7ae09e30229c13c2ce5a to your computer and use it in GitHub Desktop.
Routes for modules Routing
export function routeProvider($routeProvider) {
$routeProvider.when(
"/whatever", {
action: "whatever.home"
}
).otherwise({ "action": "home" });
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment