osem-fcy/app/helpers/paths_helper.rb
Sidharth 020dae3d49 Fix Style/ReductantReturn rubocop
Exclusions from .rubocop_todo.yml deleted.This cop checks for redundant return expressions.
Fixes #1824
2017-12-04 16:01:18 +05:30

13 lines
187 B
Ruby

module PathsHelper
##
# Includes functions related to links or redirects
##
def active_nav_li(link)
if current_page?(link)
'active'
else
''
end
end
end