debian-mirror-gitlab/app/controllers/projects/wikis_controller.rb
2021-06-08 01:23:25 +05:30

14 lines
298 B
Ruby

# 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