From 5ac6da3c41f628f31b2805bfc422a3abb6b76d6b Mon Sep 17 00:00:00 2001 From: Harshit Bansal Date: Thu, 17 Jan 2019 06:09:50 +0530 Subject: api: Add missing GET teams endpoints (#5382) * api: Add an endpoint to list a particular member of team. * models: Rename `GetUserTeams()` to `GetUserOrgTeams()` in `org_team` model. `GetUserTeams()` sounds a bit misnomer since it actually returns the teams that user belongs to in a given organization rather than all the teams across all the organization that the user has joined. * models: Add `GetUserTeams()`. Returns all the teams that a user belongs to. * api: Add an endpoint for GET '/user/teams'. A GET request to this endpoint lists all the teams that a user belongs to. --- models/org.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'models/org.go') diff --git a/models/org.go b/models/org.go index a98a1bd894..3f17e3641f 100644 --- a/models/org.go +++ b/models/org.go @@ -522,7 +522,7 @@ func removeOrgUser(sess *xorm.Session, orgID, userID int64) error { } // Delete member in his/her teams. - teams, err := getUserTeams(sess, org.ID, userID) + teams, err := getUserOrgTeams(sess, org.ID, userID) if err != nil { return err } -- cgit v1.2.3