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
|