api_org.go 445 B

123456789101112131415161718
  1. // Copyright 2015 - Present, The Gogs Authors. All rights reserved.
  2. // Copyright 2018 - Present, Gitote. All rights reserved.
  3. //
  4. // This source code is licensed under the MIT license found in the
  5. // LICENSE file in the root directory of this source tree.
  6. package context
  7. import (
  8. "gitote/gitote/models"
  9. )
  10. // APIOrganization contains organization and team
  11. type APIOrganization struct {
  12. Organization *models.User
  13. Team *models.Team
  14. }