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

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

14 lines
267 B
Ruby
Raw Normal View History

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