From f610bfa8a2ccaf195fe89866da55879436a202d8 Mon Sep 17 00:00:00 2001 From: ExMex Date: Tue, 12 Jan 2016 03:09:59 +0100 Subject: Added organization display on profile Fixed "Follower" Icon too big --- routers/user/profile.go | 7 +++++++ 1 file changed, 7 insertions(+) (limited to 'routers') diff --git a/routers/user/profile.go b/routers/user/profile.go index 915cf86c61..3a25363818 100644 --- a/routers/user/profile.go +++ b/routers/user/profile.go @@ -74,6 +74,13 @@ func Profile(ctx *middleware.Context) { ctx.Data["Title"] = u.DisplayName() ctx.Data["PageIsUserProfile"] = true ctx.Data["Owner"] = u + + orgs, err := models.GetOwnedOrgsByUserIDDesc(u.Id, "updated") + if err != nil { + ctx.Handle(500, "GetOwnedOrgsByUserIDDesc", err) + return + } + ctx.Data["Orgs"] = orgs tab := ctx.Query("tab") ctx.Data["TabName"] = tab -- cgit v1.2.3