Welcome to mirror list, hosted at ThFree Co, Russian Federation.

pwa_controller.rb « controllers « app - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
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