summaryrefslogtreecommitdiff
path: root/app/controllers/projects/wikis_controller.rb
blob: 9ee8847004ee9129ca125654324606bb732f4023 (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

  before_action do
    push_frontend_feature_flag(:content_editor_block_tables, @project, default_enabled: :yaml)
  end

  feature_category :wiki
end