Update page_contents_controller.rb,to delete the extra fields when editing the page_contents

This commit is contained in:
chiu 2019-11-01 17:40:33 +08:00
parent 4e724ef654
commit fa6587265f
1 changed files with 1 additions and 0 deletions

View File

@ -33,6 +33,7 @@ class Admin::PageContentsController < OrbitAdminController
end
def create
PageContext.where("page_id" => params["page_context"]["page_id"]).destroy_all
@page_content = PageContext.new(update_params)
@page_content.update_user_id = current_user.id
@page_content.save