summaryrefslogtreecommitdiffstats
path: root/modules/context/api_org.go
diff options
context:
space:
mode:
authorLunny Xiao <xiaolunwen@gmail.com>2021-11-19 19:41:40 +0800
committerGitHub <noreply@github.com>2021-11-19 19:41:40 +0800
commit7a0347315995b25bcb2dca4786504fb699b5f004 (patch)
tree803dfd39286216fd0521ad16539ffd9fc5f87fc0 /modules/context/api_org.go
parenta09b40de8d1dae7107437cfba42cee201fcd6d42 (diff)
downloadgitea-7a0347315995b25bcb2dca4786504fb699b5f004.tar.gz
gitea-7a0347315995b25bcb2dca4786504fb699b5f004.zip
Use a standalone struct name for Organization (#17632)
* Use a standalone struct name for Organization * recover unnecessary change * make the code readable * Fix template failure * Fix template failure * Move HasMemberWithUserID to org * Fix test * Remove unnecessary user type check * Fix test Co-authored-by: wxiaoguang <wxiaoguang@gmail.com>
Diffstat (limited to 'modules/context/api_org.go')
-rw-r--r--modules/context/api_org.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/modules/context/api_org.go b/modules/context/api_org.go
index 3a2c8c559d..6d86fa6ed2 100644
--- a/modules/context/api_org.go
+++ b/modules/context/api_org.go
@@ -10,6 +10,6 @@ import (
// APIOrganization contains organization and team
type APIOrganization struct {
- Organization *models.User
+ Organization *models.Organization
Team *models.Team
}