Files
once-campfire/app/controllers/concerns/allow_browser.rb
Kevin McConnell df76a227dc Hello world
First open source release of Campfire 🎉
2025-08-21 09:31:59 +01:00

10 lines
259 B
Ruby

module AllowBrowser
extend ActiveSupport::Concern
VERSIONS = { safari: 17.2, chrome: 120, firefox: 121, opera: 104, ie: false }
included do
allow_browser versions: VERSIONS, block: -> { render template: "sessions/incompatible_browser" }
end
end