mirror of
https://codeberg.org/forgejo/forgejo.git
synced 2024-11-10 20:16:20 +01: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:
parent
0647645948
commit
73698d292a
1 changed files with 1 additions and 0 deletions
|
@ -152,6 +152,7 @@ func ShowSSHKeys(ctx *middleware.Context, uid int64) {
|
|||
var buf bytes.Buffer
|
||||
for i := range keys {
|
||||
buf.WriteString(keys[i].OmitEmail())
|
||||
buf.WriteString("\n")
|
||||
}
|
||||
ctx.RenderData(200, buf.Bytes())
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue