2016-03-25 16:04:02 -06:00
|
|
|
// Copyright 2016 The Gogs Authors. All rights reserved.
|
2022-11-27 11:20:29 -07:00
|
|
|
// SPDX-License-Identifier: MIT
|
2016-03-25 16:04:02 -06:00
|
|
|
|
|
|
|
package context
|
|
|
|
|
2022-03-29 00:29:02 -06:00
|
|
|
import "code.gitea.io/gitea/models/organization"
|
2016-03-25 16:04:02 -06:00
|
|
|
|
2016-11-24 23:51:01 -07:00
|
|
|
// APIOrganization contains organization and team
|
2016-03-25 16:04:02 -06:00
|
|
|
type APIOrganization struct {
|
2022-03-29 00:29:02 -06:00
|
|
|
Organization *organization.Organization
|
|
|
|
Team *organization.Team
|
2016-03-25 16:04:02 -06:00
|
|
|
}
|