summaryrefslogtreecommitdiff
path: root/app/controllers/pwa_controller.rb
blob: 8de1b10e1f19c3a11acc57272fd9d53710ecb8af (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
# 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