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
|
|
|
|
|
|
|
|
import (
|
2016-11-10 17:24:48 +01:00
|
|
|
"code.gitea.io/gitea/models"
|
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 {
|
|
|
|
Organization *models.User
|
|
|
|
Team *models.Team
|
|
|
|
}
|