debian-mirror-gitlab/app/controllers/projects/usage_quotas_controller.rb
2022-01-26 12:08:38 +05:30

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