2021-08-23 11:10:43 -04:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
|
|
|
class Projects::UsageQuotasController < Projects::ApplicationController
|
2022-03-28 11:07:51 -04:00
|
|
|
before_action :authorize_read_usage_quotas!
|
2021-08-23 11:10:43 -04:00
|
|
|
|
|
|
|
layout "project_settings"
|
|
|
|
|
|
|
|
feature_category :utilization
|
2022-05-20 17:08:53 -04:00
|
|
|
urgency :low
|
2021-08-23 11:10:43 -04:00
|
|
|
|
2021-09-09 11:09:24 -04:00
|
|
|
def index
|
2021-09-30 17:11:33 -04:00
|
|
|
@hide_search_settings = true
|
2021-09-09 11:09:24 -04:00
|
|
|
end
|
2021-08-23 11:10:43 -04:00
|
|
|
end
|