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

13 lines
313 B
Ruby

class PwaController < ApplicationController
allow_unauthenticated_access
skip_forgery_protection
# We need a stable URL at the root, so we can't use the regular asset path here.
def service_worker
end
# Need ERB interpolation for paths, so can't use asset path here either.
def manifest
end
end