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

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

17 lines
270 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
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