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.

15 lines
299 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"
2023-01-13 00:05:48 +05:30
feature_category :subscription_cost_management
2022-07-23 23:45:48 +05:30
urgency :low
2021-11-11 11:23:49 +05:30
def index
2021-11-18 22:05:49 +05:30
@hide_search_settings = true
2021-11-11 11:23:49 +05:30
end
end