debian-mirror-gitlab/app/views/groups/settings/repository/show.html.haml

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

15 lines
654 B
Text
Raw Normal View History

2020-04-25 10:58:03 +05:30
- breadcrumb_title _('Repository Settings')
- page_title _('Repository')
2022-07-23 23:45:48 +05:30
- @content_class = "limit-container-width" unless fluid_layout
2020-04-25 10:58:03 +05:30
2022-10-11 01:57:18 +05:30
- if can?(current_user, :admin_group, @group)
- deploy_token_description = s_('DeployTokens|Group deploy tokens allow access to the packages, repositories, and registry images within the group.')
2020-04-25 10:58:03 +05:30
2022-10-11 01:57:18 +05:30
= render "shared/deploy_tokens/index", group_or_project: @group, description: deploy_token_description
= render "default_branch", group: @group
2023-03-17 16:20:25 +05:30
= render_if_exists "protected_branches/protected_branches", protected_branch_entity: @group
2022-10-11 01:57:18 +05:30
- if can?(current_user, :change_push_rules, @group)
= render "push_rules"