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

20 lines
390 B
Ruby

class GlossaryTermsController < ApplicationController
before_action :find_term_from_id, only: [:show]
def index
@glossary_terms = GlossaryTerm.all
end
def new
@term = GlossaryTerm.new
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
end