summaryrefslogtreecommitdiff
path: root/app/controllers/projects/usage_quotas_controller.rb
blob: f45ee2654326e3b4891dd812b0b2504f3ba5e8e3 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
# frozen_string_literal: true

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

  layout "project_settings"

  feature_category :utilization

  def index
    @hide_search_settings = true
  end
end