Skip to content

Instantly share code, notes, and snippets.

@knownasilya
Created July 17, 2013 15:26
Show Gist options
  • Save knownasilya/6021629 to your computer and use it in GitHub Desktop.
Save knownasilya/6021629 to your computer and use it in GitHub Desktop.
Create Survey
App.SurveysNewController = Ember.ObjectController.extend({
createSurvey: function (model) {
var record = App.Survey.createRecord(model);
record.one("didCreate", function () {
this.transitionToRoute("surveys");
});
record.get("transaction").commit();
}
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment