summaryrefslogtreecommitdiff
path: root/app/controllers/pwa_controller.rb
blob: bb47bdc8050757f914fdf7f986fa04882f50222b (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!, :required_signup_info

  def manifest
  end

  def offline
  end
end