about summary refs log tree commit diff
path: root/app/helpers/application_helper.rb
blob: f61b82aa6aa2567ec2d8d6522f613e6708fc0113 (plain) (blame)
1
2
3
4
5
6
7
# frozen_string_literal: true

module ApplicationHelper
  def is_active(action)
    params[:action] == action ? "current" : nil
  end
end