summaryrefslogtreecommitdiff
path: root/app/helpers/ssh_keys_helper.rb
diff options
context:
space:
mode:
Diffstat (limited to 'app/helpers/ssh_keys_helper.rb')
-rw-r--r--app/helpers/ssh_keys_helper.rb22
1 files changed, 22 insertions, 0 deletions
diff --git a/app/helpers/ssh_keys_helper.rb b/app/helpers/ssh_keys_helper.rb
index 4cd40836335..13d6851f3cd 100644
--- a/app/helpers/ssh_keys_helper.rb
+++ b/app/helpers/ssh_keys_helper.rb
@@ -23,6 +23,28 @@ module SshKeysHelper
}
end
+ def ssh_key_revoke_modal_data(key, path)
+ title = _('Revoke Key')
+
+ {
+ path: path,
+ method: 'delete',
+ qa_selector: 'revoke_ssh_key_button',
+ title: title,
+ aria_label: title,
+ modal_attributes: {
+ 'data-qa-selector': 'ssh_key_revoke_modal',
+ title: _('Are you sure you want to revoke this SSH key?'),
+ message: _('This action cannot be undone, and will permanently delete the %{key} SSH key. All commits signed using this SSH key will be marked as unverified.') % { key: key.title },
+ okVariant: 'danger',
+ okTitle: _('Revoke')
+ },
+ toggle: 'tooltip',
+ placement: 'top',
+ container: 'body'
+ }
+ end
+
def ssh_key_allowed_algorithms
allowed_algorithms = Gitlab::CurrentSettings.allowed_key_types.flat_map do |ssh_key_type_name|
Gitlab::SSHPublicKey.supported_algorithms_for_name(ssh_key_type_name)