debian-mirror-gitlab/app/controllers/projects/usage_quotas_controller.rb
2023-06-20 00:43:36 +05:30

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