Merge branch 'ce-fe-fix-ee-diff-profile-key-views' into 'master'

Resolve EE/CE differences in app/views/profiles/keys

See merge request gitlab-org/gitlab-ce!28900
This commit is contained in:
Bob Van Landuyt 2019-06-04 08:02:53 +00:00
commit d16c11ab36
3 changed files with 11 additions and 4 deletions

View File

@ -59,6 +59,11 @@ class Key < ApplicationRecord
"key-#{id}"
end
# EE overrides this
def can_delete?
true
end
# rubocop: disable CodeReuse/ServiceClass
def update_last_used_at
Keys::LastUsedService.new(self).execute

View File

@ -18,6 +18,7 @@
.float-right
%span.key-created-at
= s_('Profiles|Created %{time_ago}'.html_safe) % { time_ago:time_ago_with_tooltip(key.created_at)}
= link_to path_to_key(key, is_admin), data: { confirm: _('Are you sure?')}, method: :delete, class: "btn btn-transparent prepend-left-10" do
%span.sr-only= _('Remove')
= icon('trash')
- if key.can_delete?
= link_to path_to_key(key, is_admin), data: { confirm: _('Are you sure?')}, method: :delete, class: "btn btn-transparent prepend-left-10" do
%span.sr-only= _('Remove')
= icon('trash')

View File

@ -24,4 +24,5 @@
= @key.key
.col-md-12
.float-right
= link_to _('Remove'), path_to_key(@key, is_admin), data: {confirm: _('Are you sure?')}, method: :delete, class: "btn btn-remove delete-key qa-delete-key-button"
- if @key.can_delete?
= link_to _('Remove'), path_to_key(@key, is_admin), data: {confirm: _('Are you sure?')}, method: :delete, class: "btn btn-remove delete-key qa-delete-key-button"