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: ea14dfb27b3defded8f70f50aaa33e6d18b31dcb (plain)
1
2
3
4
5
6
7
8
9
10
11
12
# frozen_string_literal: true

class PwaController < ApplicationController # rubocop:disable Gitlab/NamespacedClass
  layout 'errors'

  feature_category :navigation

  skip_before_action :authenticate_user!

  def offline
  end
end