Remove registry image delete button if user cant delete it

This commit is contained in:
vanadium23 2017-06-20 21:12:46 +03:00
parent b2e1d32e7a
commit 1d85cc462b
2 changed files with 12 additions and 7 deletions

View File

@ -6,13 +6,14 @@
= clipboard_button(clipboard_text: "docker pull #{image.location}")
.controls.hidden-xs.pull-right
= link_to namespace_project_container_registry_path(@project.namespace, @project, image),
class: 'btn btn-remove has-tooltip',
title: 'Remove repository',
data: { confirm: 'Are you sure?' },
method: :delete do
= icon('trash cred', 'aria-hidden': 'true')
- if can?(current_user, :update_container_image, @project)
.controls.hidden-xs.pull-right
= link_to namespace_project_container_registry_path(@project.namespace, @project, image),
class: 'btn btn-remove has-tooltip',
title: 'Remove repository',
data: { confirm: 'Are you sure?' },
method: :delete do
= icon('trash cred', 'aria-hidden': 'true')
.container-image-tags.js-toggle-content.hide
- if image.has_tags?

View File

@ -0,0 +1,4 @@
---
title: Remove registry image delete button if user cant delete it
merge_request: 12317
author: Ivan Chernov