Skip to content
Snippets Groups Projects

Support "ecdsa-sk" and "ed25519-sk" SSH keys

Merged Bogdan Denkovych requested to merge support_ecdsa-sk_and_ed25519-sk_ssh_keys into master
All threads resolved!
Compare and Show latest version
8 files
+ 56
8
Compare changes
  • Side-by-side
  • Inline
Files
8
# frozen_string_literal: true
class AddEcdsaSkAndEd25519SkKeyRestrictionsToApplicationSettings < Gitlab::Database::Migration[1.0]
enable_lock_retries!
def change
add_column :application_settings, :ecdsa_sk_key_restriction, :integer, default: 0, null: false
add_column :application_settings, :ed25519_sk_key_restriction, :integer, default: 0, null: false
end
end
Loading