Welcome to mirror list, hosted at ThFree Co, Russian Federation.

usage_quotas_controller.rb « projects « controllers « app - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: d3757eaf48143347c4116e3d31cda274d0f42b8a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
# frozen_string_literal: true

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

  layout "project_settings"

  feature_category :subscription_cost_management
  urgency :low

  def index
    @hide_search_settings = true
  end
end