gitlab-org--gitlab-foss/app/controllers/pwa_controller.rb

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

17 lines
270 B
Ruby
Raw Normal View History

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