summaryrefslogtreecommitdiff
path: root/app/controllers/projects/work_items_controller.rb
blob: db9dca14aab616d26d4787cd3b9d01801a6ca2a2 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
# 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, project&.work_items_mvc_feature_flag_enabled?)
    push_force_frontend_feature_flag(:work_items_mvc_2, project&.work_items_mvc_2_feature_flag_enabled?)
    push_frontend_feature_flag(:use_iid_in_work_items_path, project&.group)
  end

  feature_category :team_planning
  urgency :low
end

Projects::WorkItemsController.prepend_mod