Merge pull request #1317 from smcquay/keys

fix .keys route
This commit is contained in:
无闻 2015-07-25 00:46:39 +08:00
commit 333ab1b2b4
1 changed files with 1 additions and 0 deletions

View File

@ -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())
}