gitlab-org--gitlab-foss/app/controllers/projects/wikis_controller.rb

14 lines
298 B
Ruby
Raw Normal View History

# frozen_string_literal: true
class Projects::WikisController < Projects::ApplicationController
include WikiActions
alias_method :container, :project
2012-02-19 14:35:31 +00:00
feature_category :wiki
before_action do
push_frontend_feature_flag(:wiki_content_editor, project, default_enabled: :yaml)
end
2012-02-19 14:35:31 +00:00
end