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: 8d94fd238a6a20a9ab9fb955c4ba3150a6fa1a34 (plain)
1
2
3
4
5
6
7
8
9
10
11
class Explore::ApplicationController < ApplicationController
  before_action :set_title

  private

  def set_title
    @title      = "Explore GitLab"
    @title_url  = explore_root_path
    @sidebar    = "explore"
  end
end