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

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

  alias_method :container, :project

  feature_category :wiki

  before_action do
    push_frontend_feature_flag(:wiki_content_editor, project, default_enabled: :yaml)
  end
end