Skip to content

Instantly share code, notes, and snippets.

@bradgignac
Created August 9, 2013 21:52
Show Gist options
  • Save bradgignac/6197576 to your computer and use it in GitHub Desktop.
Save bradgignac/6197576 to your computer and use it in GitHub Desktop.
Ember Email Client Routes
App.EmailClient.Router.map(function () {
this.resource('mailboxes', '/', function () {
this.resource('messages', '/:mailbox_id', function () {
this.resource('message', '/:message_id');
});
});
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment