プロジェクト

全般

プロフィール

« | » 

リビジョン fec83eef

高徹 高橋 徹 さんが約6年前に追加

[phase-4]edit, update

差分を表示:

app/controllers/glossary_terms_controller.rb
class GlossaryTermsController < ApplicationController
before_action :find_term_from_id, only: [:show]
before_action :find_term_from_id, only: [:show, :edit, :update]
def index
@glossary_terms = GlossaryTerm.all
......
term = GlossaryTerm.new(glossary_term_params)
if term.save
flash[:notice] = l(:notice_successful_create)
redirect_to glossary_term_path(term.id)
redirect_to term
end
end
def edit
end
def update
@term.attributes = glossary_term_params
if @term.save
flash[:notice] = l(:notice_successful_update)
redirect_to @term
end
rescue ActiveRecord::StaleObjectError
flash.now[:error] = l(:notice_locking_conflict)
end
# Find the term whose id is the :id parameter
def find_term_from_id

他の形式にエクスポート: Unified diff