summaryrefslogtreecommitdiffstats
path: root/routers
diff options
context:
space:
mode:
Diffstat (limited to 'routers')
-rw-r--r--routers/user/setting.go3
1 files changed, 2 insertions, 1 deletions
diff --git a/routers/user/setting.go b/routers/user/setting.go
index 019044c53d..a55e617f44 100644
--- a/routers/user/setting.go
+++ b/routers/user/setting.go
@@ -166,7 +166,8 @@ func SettingSSHKeys(ctx *middleware.Context, form auth.AddSSHKeyForm) {
return
}
- k := &models.PublicKey{OwnerId: ctx.User.Id,
+ k := &models.PublicKey{
+ OwnerId: ctx.User.Id,
Name: form.KeyName,
Content: form.KeyContent,
}