summaryrefslogtreecommitdiffstats
path: root/routers/user/profile.go
diff options
context:
space:
mode:
authorSandro Santilli <strk@kbt.io>2017-03-20 09:31:08 +0100
committerKim "BKC" Carlbäcker <kim.carlbacker@gmail.com>2017-03-20 09:31:08 +0100
commit9182a35f18b6d5cd981486852028e670984145c3 (patch)
treecab69a27330df5a095de95017e8b40bf13598889 /routers/user/profile.go
parente1586898b2f0905b6f59383c01a3aed6b39de93a (diff)
downloadgitea-9182a35f18b6d5cd981486852028e670984145c3.tar.gz
gitea-9182a35f18b6d5cd981486852028e670984145c3.zip
Show user OpenID URIs in their profile (#1314)
Diffstat (limited to 'routers/user/profile.go')
-rw-r--r--routers/user/profile.go8
1 files changed, 8 insertions, 0 deletions
diff --git a/routers/user/profile.go b/routers/user/profile.go
index 89585551ad..eb862d6542 100644
--- a/routers/user/profile.go
+++ b/routers/user/profile.go
@@ -75,9 +75,17 @@ func Profile(ctx *context.Context) {
return
}
+ // Show OpenID URIs
+ openIDs, err := models.GetUserOpenIDs(ctxUser.ID)
+ if err != nil {
+ ctx.Handle(500, "GetUserOpenIDs", err)
+ return
+ }
+
ctx.Data["Title"] = ctxUser.DisplayName()
ctx.Data["PageIsUserProfile"] = true
ctx.Data["Owner"] = ctxUser
+ ctx.Data["OpenIDs"] = openIDs
showPrivate := ctx.IsSigned && (ctx.User.IsAdmin || ctx.User.ID == ctxUser.ID)
orgs, err := models.GetOrgsByUserID(ctxUser.ID, showPrivate)