18 lines
371 B
Ruby
18 lines
371 B
Ruby
# 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
|