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.

19 lines
371 B
Ruby
Raw Normal View History

2021-11-11 11:23:49 +05:30
# frozen_string_literal: true
2023-06-20 00:43:36 +05:30
module Projects
class UsageQuotasController < Projects::ApplicationController
before_action :authorize_read_usage_quotas!
2021-11-11 11:23:49 +05:30
2023-06-20 00:43:36 +05:30
layout "project_settings"
2021-11-11 11:23:49 +05:30
2023-06-20 00:43:36 +05:30
feature_category :consumables_cost_management
urgency :low
2021-11-11 11:23:49 +05:30
2023-06-20 00:43:36 +05:30
def index
@hide_search_settings = true
end
2021-11-11 11:23:49 +05:30
end
end
2023-06-20 00:43:36 +05:30
Projects::UsageQuotasController.prepend_mod