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

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

class Projects::WikisController < Projects::ApplicationController
  include WikiActions

  alias_method :container, :project

  feature_category :wiki

  def git_access
  end
end