2016-03-25 23:04:02 +01: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 08:29:02 +02:00
|
|
|
import "code.gitea.io/gitea/models/organization"
|
2016-03-25 23:04:02 +01:00
|
|
|
|
2016-11-25 07:51:01 +01:00
|
|
|
// APIOrganization contains organization and team
|
2016-03-25 23:04:02 +01:00
|
|
|
type APIOrganization struct {
|
2022-03-29 08:29:02 +02:00
|
|
|
Organization *organization.Organization
|
|
|
|
Team *organization.Team
|
2016-03-25 23:04:02 +01:00
|
|
|
}
|