summaryrefslogtreecommitdiff
path: root/app/controllers/projects/usage_quotas_controller.rb
blob: 7037cf8811acbab08c1f785b56e3e9e1373151d3 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
# frozen_string_literal: true

module Projects
  class UsageQuotasController < Projects::ApplicationController
    before_action :authorize_read_usage_quotas!

    layout "project_settings"

    feature_category :consumables_cost_management
    urgency :low

    def index
      @hide_search_settings = true
    end
  end
end

Projects::UsageQuotasController.prepend_mod