Welcome to mirror list, hosted at ThFree Co, Russian Federation.

usage_quotas_controller.rb « projects « controllers « app - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: b319e427eaaed45b645d6d9346cc031270b244f2 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
# 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
    @storage_app_data = {
      project_path: @project.full_path,
      usage_quotas_help_page_path: help_page_path('user/usage_quotas'),
      build_artifacts_help_page_path: help_page_path('ci/pipelines/job_artifacts', anchor: 'when-job-artifacts-are-deleted'),
      packages_help_page_path: help_page_path('user/packages/package_registry/index.md', anchor: 'delete-a-package'),
      repository_help_page_path: help_page_path('user/project/repository/reducing_the_repo_size_using_git'),
      snippets_help_page_path: help_page_path('user/snippets', anchor: 'reduce-snippets-repository-size'),
      wiki_help_page_path: help_page_path('administration/wikis/index.md', anchor: 'reduce-wiki-repository-size')
    }
  end
end