mirror of
https://github.com/gitlabhq/gitlabhq.git
synced 2025-08-17 19:25:49 +00:00
17 lines
270 B
Ruby
17 lines
270 B
Ruby
# 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
|