mirror of
https://github.com/go-gitea/gitea
synced 2025-07-16 15:28:37 +00:00
fix .keys route
This change fixes the output from /{{ username }}.keys so that it can work in a ~/.ssh/authorized_keys file
This commit is contained in:
@@ -152,6 +152,7 @@ func ShowSSHKeys(ctx *middleware.Context, uid int64) {
|
|||||||
var buf bytes.Buffer
|
var buf bytes.Buffer
|
||||||
for i := range keys {
|
for i := range keys {
|
||||||
buf.WriteString(keys[i].OmitEmail())
|
buf.WriteString(keys[i].OmitEmail())
|
||||||
|
buf.WriteString("\n")
|
||||||
}
|
}
|
||||||
ctx.RenderData(200, buf.Bytes())
|
ctx.RenderData(200, buf.Bytes())
|
||||||
}
|
}
|
||||||
|
Reference in New Issue
Block a user