Welcome to mirror list, hosted at ThFree Co, Russian Federation.

work_items_controller.rb « projects « controllers « app - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: b794785f285cd0dd9cc5a21115572be98d387fa6 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
# frozen_string_literal: true

class Projects::WorkItemsController < Projects::ApplicationController
  before_action do
    push_force_frontend_feature_flag(:work_items, project&.work_items_feature_flag_enabled?)
    push_force_frontend_feature_flag(:work_items_mvc_2, project&.work_items_mvc_2_feature_flag_enabled?)
    push_frontend_feature_flag(:work_items_hierarchy, project)
  end

  feature_category :team_planning
  urgency :low

  def index
    render_404 unless project&.work_items_feature_flag_enabled?
  end
end