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.

14 lines
341 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?)
2021-11-11 11:23:49 +05:30
end
2022-06-21 17:19:12 +05:30
feature_category :team_planning
2021-11-11 11:23:49 +05:30
def index
2022-06-21 17:19:12 +05:30
render_404 unless project&.work_items_feature_flag_enabled?
2021-11-11 11:23:49 +05:30
end
end