2016-03-26 03:34:02 +05:30
|
|
|
// 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 21:54:48 +05:30
|
|
|
"code.gitea.io/gitea/models"
|
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 {
|
|
|
|
Organization *models.User
|
|
|
|
Team *models.Team
|
|
|
|
}
|