2021-09-08 02:10:46 -04:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
|
|
|
class Projects::WorkItemsController < Projects::ApplicationController
|
|
|
|
before_action do
|
|
|
|
push_frontend_feature_flag(:work_items, project, default_enabled: :yaml)
|
|
|
|
end
|
|
|
|
|
|
|
|
feature_category :not_owned
|
|
|
|
|
|
|
|
def index
|
2021-09-10 05:11:07 -04:00
|
|
|
render_404 unless Feature.enabled?(:work_items, project, default_enabled: :yaml)
|
2021-09-08 02:10:46 -04:00
|
|
|
end
|
|
|
|
end
|