diff options
Diffstat (limited to 'models/org.go')
-rw-r--r-- | models/org.go | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/models/org.go b/models/org.go index 18ed68e6f4..ce50670582 100644 --- a/models/org.go +++ b/models/org.go @@ -165,6 +165,13 @@ func CountOrganizations() int64 { return count } +// GetOrganizations returns given number of organizations with offset. +func GetOrganizations(num, offset int) ([]*User, error) { + orgs := make([]*User, 0, num) + err := x.Limit(num, offset).Where("type=1").Asc("id").Find(&orgs) + return orgs, err +} + // TODO: need some kind of mechanism to record failure. // DeleteOrganization completely and permanently deletes everything of organization. func DeleteOrganization(org *User) (err error) { |