Secure your code as it's written. Use Snyk Code to scan source code in minutes - no build needed - and fix issues immediately.
setupController: function(controller, models) {
controller.setProperties({
model: models.interaction,
completionForm: InteractionCompletionForm.create({
model: models.completion,
interactionTypes: models.interactionTypes.interaction_types,
interactionClassifications: models.interactionTypes.classifications,
container: this.get('container')
}),
advisorPaymentForm: AdvisorPaymentForm.create({
model: models.interaction,
container: this.get('container')
}),
showForm: false
});
}
});