Skip to content

Instantly share code, notes, and snippets.

@kirs
Created October 27, 2014 13:33
Show Gist options
  • Save kirs/6bd396418a4a68da6341 to your computer and use it in GitHub Desktop.
Save kirs/6bd396418a4a68da6341 to your computer and use it in GitHub Desktop.
class UserWithCompanyForm > ActiveForm::Base
self.base_model = :user
attributes :email, :password, :company_name, presence: true
def save
if @model.save
Company.create(owner_id: @model.id, name: company_name)
true
else
false
end
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment