2016-03-25 22:04:02 +00:00
|
|
|
// Copyright 2016 The Gogs Authors. All rights reserved.
|
|
|
|
// Use of this source code is governed by a MIT-style
|
|
|
|
// license that can be found in the LICENSE file.
|
|
|
|
|
|
|
|
package context
|
|
|
|
|
2022-03-29 06:29:02 +00:00
|
|
|
import "code.gitea.io/gitea/models/organization"
|
2016-03-25 22:04:02 +00:00
|
|
|
|
2016-11-25 06:51:01 +00:00
|
|
|
// APIOrganization contains organization and team
|
2016-03-25 22:04:02 +00:00
|
|
|
type APIOrganization struct {
|
2022-03-29 06:29:02 +00:00
|
|
|
Organization *organization.Organization
|
|
|
|
Team *organization.Team
|
2016-03-25 22:04:02 +00:00
|
|
|
}
|