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

about_controller.rb « controllers « app - github.com/git/git-scm.com.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: b181e9c88255b0dad4a87efc16f1a58f9f1c58b6 (plain)
1
2
3
4
5
6
7
8
# frozen_string_literal: true

class AboutController < ApplicationController
  def index
    @section = "about"
    set_title "About"
  end
end