2022-07-16 23:28:13 +05:30
|
|
|
# frozen_string_literal: true
|
|
|
|
|
|
|
|
class PwaController < ApplicationController # rubocop:disable Gitlab/NamespacedClass
|
|
|
|
layout 'errors'
|
|
|
|
|
|
|
|
feature_category :navigation
|
2022-07-23 23:45:48 +05:30
|
|
|
urgency :low
|
2022-07-16 23:28:13 +05:30
|
|
|
|
|
|
|
skip_before_action :authenticate_user!
|
|
|
|
|
2022-07-23 23:45:48 +05:30
|
|
|
def manifest
|
|
|
|
end
|
|
|
|
|
2022-07-16 23:28:13 +05:30
|
|
|
def offline
|
|
|
|
end
|
|
|
|
end
|