Add support for adding SSH public keys to profiles

Users can now add an SSH public key on the account edit page. This will
later be used to authenticate users via SSH.

Signed-off-by: Lukas Fleischer <archlinux@cryptocrack.de>
This commit is contained in:
Lukas Fleischer 2014-06-03 16:37:50 +02:00
parent 1af375828f
commit 253e76d8cc
5 changed files with 85 additions and 9 deletions

5
upgrading/4.0.0.txt Normal file
View file

@ -0,0 +1,5 @@
1. Add a field for the SSH public key to the Users table:
----
ALTER TABLE Users ADD COLUMN SSHPubKey VARCHAR(4096) NULL DEFAULT NULL;
----