2016-03-26 03:34:02 +05:30
|
|
|
// Copyright 2016 The Gogs Authors. All rights reserved.
|
2022-11-27 23:50:29 +05:30
|
|
|
// SPDX-License-Identifier: MIT
|
2016-03-26 03:34:02 +05:30
|
|
|
|
|
|
|
package context
|
|
|
|
|
2022-03-29 11:59:02 +05:30
|
|
|
import "code.gitea.io/gitea/models/organization"
|
2016-03-26 03:34:02 +05:30
|
|
|
|
2016-11-25 12:21:01 +05:30
|
|
|
// APIOrganization contains organization and team
|
2016-03-26 03:34:02 +05:30
|
|
|
type APIOrganization struct {
|
2022-03-29 11:59:02 +05:30
|
|
|
Organization *organization.Organization
|
|
|
|
Team *organization.Team
|
2016-03-26 03:34:02 +05:30
|
|
|
}
|