debian-mirror-gitlab/app/controllers/pwa_controller.rb

13 lines
233 B
Ruby
Raw Normal View History

2022-07-16 23:28:13 +05:30
# 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