我有 2 个模型用户和公司。(我正在为用户使用设计)
- 用户属于公司。
- 公司有很多用户。
我的用户模型包括一个 client_id 列。
目前,用户注册并被定向到我想在其中创建关系的 new_company_path。(我宁愿分两步进行)。
我知道我的代码在Companies_controller.rb中是错误的——但这就是我所在的位置
def create
@user = current_user
@company = @user.Company.new(params[:company])
respond_to do |format|
if @company.save
format.html { redirect_to root_path, notice: 'Company was successfully created.' }
format.json { render json: @company, status: :created, location: @company }
else
format.html { render action: "new" }
format.json { render json: @company.errors, status: :unprocessable_entity }
end
end