13 lines
263 B
Ruby
13 lines
263 B
Ruby
# 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
|