2022-05-17 08:08:06 -04:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
|
|
|
class PwaController < ApplicationController # rubocop:disable Gitlab/NamespacedClass
|
|
|
|
layout 'errors'
|
|
|
|
|
|
|
|
feature_category :navigation
|
2022-05-20 17:08:53 -04:00
|
|
|
urgency :low
|
2022-05-17 08:08:06 -04:00
|
|
|
|
|
|
|
skip_before_action :authenticate_user!
|
|
|
|
|
2022-05-19 05:09:08 -04:00
|
|
|
def manifest
|
|
|
|
end
|
|
|
|
|
2022-05-17 08:08:06 -04:00
|
|
|
def offline
|
|
|
|
end
|
|
|
|
end
|