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: 8eee3742d89bd58da3b13566ee7562b1b28ac423 (plain)
1
2
3
4
5
6
7
# frozen_string_literal: true

class Explore::ApplicationController < ApplicationController
  skip_before_action :authenticate_user!

  layout 'explore'
end