summaryrefslogtreecommitdiff
path: root/app/controllers/projects/work_items_controller.rb
blob: a7e59a28fb751797ca45ec7cea691fc1c3df8d3d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
# 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(:use_iid_in_work_items_path, project)
  end

  feature_category :team_planning
  urgency :low
end