ember-cli-scaffold
ember-cli-scaffold copied to clipboard
Question: How does one scaffold model relationships?
I'd like to use ember-cli-scaffold for models with relationships. Is this formally supported? If, not is there a work around for scaffolding models like this (e.g. from the Ember docs):
App.User = DS.Model.extend({
profile: DS.belongsTo('profile')
});