debian-mirror-gitlab/app/controllers/projects/work_items_controller.rb

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

16 lines
598 B
Ruby
Raw Normal View History

2021-11-11 11:23:49 +05:30
# frozen_string_literal: true
class Projects::WorkItemsController < Projects::ApplicationController
before_action do
2022-06-21 17:19:12 +05:30
push_force_frontend_feature_flag(:work_items, project&.work_items_feature_flag_enabled?)
2023-03-04 22:38:38 +05:30
push_force_frontend_feature_flag(:work_items_mvc, project&.work_items_mvc_feature_flag_enabled?)
2022-08-27 11:52:29 +05:30
push_force_frontend_feature_flag(:work_items_mvc_2, project&.work_items_mvc_2_feature_flag_enabled?)
2023-03-17 16:20:25 +05:30
push_frontend_feature_flag(:use_iid_in_work_items_path, project&.group)
2021-11-11 11:23:49 +05:30
end
2022-06-21 17:19:12 +05:30
feature_category :team_planning
2022-07-16 23:28:13 +05:30
urgency :low
2021-11-11 11:23:49 +05:30
end
2023-03-04 22:38:38 +05:30
Projects::WorkItemsController.prepend_mod