MCPcopy Create free account
hub / github.com/gogs/gogs / GetOrgUsersByOrgID

Function GetOrgUsersByOrgID

internal/database/org.go:315–317  ·  view source on GitHub ↗

GetOrgUsersByOrgID returns all organization-user relations by organization ID.

(orgID int64, limit int)

Source from the content-addressed store, hash-verified

313
314// GetOrgUsersByOrgID returns all organization-user relations by organization ID.
315func GetOrgUsersByOrgID(orgID int64, limit int) ([]*OrgUser, error) {
316 return getOrgUsersByOrgID(x, orgID, limit)
317}
318
319// ChangeOrgUserStatus changes public or private membership status.
320func ChangeOrgUserStatus(orgID, uid int64, public bool) error {

Callers 1

GetMembersMethod · 0.85

Calls 1

getOrgUsersByOrgIDFunction · 0.85

Tested by

no test coverage detected