You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

api_org.go 313B

123456789101112
  1. // Copyright 2016 The Gogs Authors. All rights reserved.
  2. // SPDX-License-Identifier: MIT
  3. package context
  4. import "code.gitea.io/gitea/models/organization"
  5. // APIOrganization contains organization and team
  6. type APIOrganization struct {
  7. Organization *organization.Organization
  8. Team *organization.Team
  9. }