afimb/chouette2

View on GitHub
app/controllers/help_controller.rb

Summary

Maintainability
A
0 mins
Test Coverage
class HelpController < ActionController::Base
  include Pundit
  layout "application"
  protect_from_forgery
  before_action :set_locale

  def set_locale
    I18n.locale = session[:language] || I18n.default_locale
  end

  def show
    @page = HelpPage.find(slug)
    @toc = HelpPage.find("toc")
  end

  private

  def slug
    params[:slug] or "index"
  end

end