debian-mirror-gitlab/app/controllers/projects/usage_quotas_controller.rb

14 lines
263 B
Ruby
Raw Normal View History

2021-11-11 11:23:49 +05:30
# frozen_string_literal: true
class Projects::UsageQuotasController < Projects::ApplicationController
before_action :authorize_admin_project!
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