mirror of
https://gitlab.archlinux.org/archlinux/aurweb.git
synced 2025-02-03 10:43:03 +01:00
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:
parent
1af375828f
commit
253e76d8cc
5 changed files with 85 additions and 9 deletions
|
@ -33,6 +33,7 @@ CREATE TABLE Users (
|
|||
LangPreference VARCHAR(5) NOT NULL DEFAULT 'en',
|
||||
IRCNick VARCHAR(32) NOT NULL DEFAULT '',
|
||||
PGPKey VARCHAR(40) NULL DEFAULT NULL,
|
||||
SSHPubKey VARCHAR(4096) NULL DEFAULT NULL,
|
||||
LastLogin BIGINT UNSIGNED NOT NULL DEFAULT 0,
|
||||
LastLoginIPAddress INTEGER UNSIGNED NOT NULL DEFAULT 0,
|
||||
InactivityTS BIGINT UNSIGNED NOT NULL DEFAULT 0,
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue