gitlab-org--gitlab-foss/app/controllers/projects/usage_quotas_controller.rb

14 lines
263 B
Ruby

# frozen_string_literal: true
class Projects::UsageQuotasController < Projects::ApplicationController
before_action :authorize_admin_project!
layout "project_settings"
feature_category :utilization
def index
@hide_search_settings = true
end
end