Files
puzzle-scoreboard/app/helpers/style_helper.rb
sto 86dd0b7b9e
Some checks failed
CI / scan_ruby (push) Successful in 20s
CI / scan_js (push) Successful in 13s
CI / lint (push) Successful in 13s
CI / test (push) Failing after 37s
Revamp contest settings into tabs
2025-11-12 11:33:44 +01:00

6 lines
105 B
Ruby

module StyleHelper
def active_page(path)
request.path.starts_with?(path) ? "active" : ""
end
end