Skip to content

Instantly share code, notes, and snippets.

@mmun
Forked from radar/gist:10101402
Last active August 29, 2015 13:58
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save mmun/10102346 to your computer and use it in GitHub Desktop.
Save mmun/10102346 to your computer and use it in GitHub Desktop.
# posts/1/comments/1
Blorgh.CommentsNewRoute = Ember.Route.extend
model: ->
post = @modelFor('post')
@store.createRecord('comment', {post})
actions:
save: ->
route = this
@currentModel.save().then (comment) ->
route.transitionTo('post', comment.get('post'))
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment