Welcome to mirror list, hosted at ThFree Co, Russian Federation.

application_controller.rb « explore « controllers « app - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 9d33135d4c1208cc000e0252442809b891ce8d46 (plain)
1
2
3
4
5
6
7
# frozen_string_literal: true

class Explore::ApplicationController < ApplicationController
  skip_before_action :authenticate_user!, unless: :public_visibility_restricted?

  layout 'explore'
end