redmine_glossary/app/controllers/glossary_terms_controller.rb
2020-01-02 19:39:19 +09:00

49 lines
974 B
Ruby

class GlossaryTermsController < ApplicationController
before_action :find_term_from_id, only: [:show, :edit, :update]
def index
@glossary_terms = GlossaryTerm.all
end
def new
@term = GlossaryTerm.new
end
def create
term = GlossaryTerm.new(glossary_term_params)
if term.save
flash[:notice] = l(:notice_successful_create)
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
@term = GlossaryTerm.find(params[:id])
rescue ActiveRecord::RecordNotFound
render_404
end
private
def glossary_term_params
params.require(:glossary_term).permit(
:name, :description
)
end
end