summaryrefslogtreecommitdiff
path: root/app/controllers/projects/usage_quotas_controller.rb
blob: 680874ffee43a1d3dfed164429b107f9915422c6 (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_admin_project!

  layout "project_settings"

  feature_category :utilization

  def index
    @hide_search_settings = true
  end
end