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

show.html.haml « repository « settings « projects « views « app - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 1240418036222bc915cde54f8be5a14aaf8d26dc (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
- breadcrumb_title _("Repository Settings")
- page_title _("Repository")
- deploy_token_description = s_('DeployTokens|Deploy tokens allow access to packages, your repository, and registry images.')
- @force_desktop_expanded_sidebar = true

= render "projects/branch_defaults/show"
- if Feature.enabled?(:branch_rules, @project)
  = render "projects/branch_rules/show"
= render_if_exists "projects/push_rules/index"
= render "projects/mirrors/mirror_repos"

-# Protected branches & tags use a lot of nested partials.
-# The shared parts of the views can be found in the `shared` directory.
-# Those are used throughout the actual views. These `shared` views are then
-# reused in EE.
= render "projects/settings/repository/protected_branches", protected_branch_entity: @project
= render "shared/deploy_tokens/index", group_or_project: @project, description: deploy_token_description
= render 'shared/deploy_keys/index'
= render "projects/cleanup/show"

= render_if_exists 'shared/promotions/promote_repository_features'