2021-11-11 11:23:49 +05:30
|
|
|
# frozen_string_literal: true
|
|
|
|
|
|
|
|
class Projects::UsageQuotasController < Projects::ApplicationController
|
2022-06-21 17:19:12 +05:30
|
|
|
before_action :authorize_read_usage_quotas!
|
2021-11-11 11:23:49 +05:30
|
|
|
|
|
|
|
layout "project_settings"
|
|
|
|
|
|
|
|
feature_category :utilization
|
|
|
|
|
|
|
|
def index
|
2021-11-18 22:05:49 +05:30
|
|
|
@hide_search_settings = true
|
2021-11-11 11:23:49 +05:30
|
|
|
end
|
|
|
|
end
|