wah.moe/app/helpers/application_helper.rb
2025-09-21 03:09:52 +01:00

9 lines
211 B
Ruby

module ApplicationHelper
def is_legacy
return (
request.host === "legacy.wah.moe" or
request.host.start_with? ("192.168") or
request.headers["Host"] === nil
)
end
end