Welcome to mirror list, hosted at ThFree Co, Russian Federation.

work_items_controller.rb « groups « controllers « app - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: d1e15c81471edac4e4b9c43a3c15ec1bf8985a66 (plain)
1
2
3
4
5
6
7
8
9
10
11
# frozen_string_literal: true

module Groups
  class WorkItemsController < Groups::ApplicationController
    feature_category :team_planning

    def index
      not_found unless Feature.enabled?(:namespace_level_work_items, group)
    end
  end
end