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: 02dfaf4c1935a3d05c7c246df51860f205f1215e (plain)
1
2
3
4
5
6
7
8
9
10
11
# frozen_string_literal: true

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

  urgency :low

  alias_method :container, :project

  feature_category :wiki
end