Files
fizzy/app/controllers/pwa_controller.rb
T
2025-07-15 15:22:32 -05:00

12 lines
312 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