Du kannst nicht mehr als 25 Themen auswählen Themen müssen mit entweder einem Buchstaben oder einer Ziffer beginnen. Sie können Bindestriche („-“) enthalten und bis zu 35 Zeichen lang sein.

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. }