debian-mirror-gitlab/app/controllers/pwa_controller.rb
2023-03-17 16:20:25 +05:30

17 lines
293 B
Ruby

# frozen_string_literal: true
class PwaController < ApplicationController # rubocop:disable Gitlab/NamespacedClass
layout 'errors'
feature_category :navigation
urgency :low
skip_before_action :authenticate_user!, :required_signup_info
def manifest
end
def offline
end
end