FIX project about page for attachment bugh

This commit is contained in:
Jasder 2020-10-05 17:41:28 +08:00
parent 758302170d
commit 5ca94e4f97
1 changed files with 1 additions and 1 deletions

View File

@ -123,7 +123,7 @@ class ProjectsController < ApplicationController
if @project_detail.save!
attachment_ids = Array(params[:attachment_ids])
logger.info "=============> #{Array(params[:attachment_ids])}"
@attachments = Attachment.where(id: attachment_ids).select(:id, :container_id, :container_type)
@attachments = Attachment.where(id: attachment_ids)
@attachments.update_all(
container_id: @project_detail.id,
container_type: @project_detail.model_name.name,