2019-05-06 19:12:51 -06:00
|
|
|
// Copyright 2019 The Gitea Authors. All rights reserved.
|
|
|
|
// Copyright 2018 Jonas Franz. All rights reserved.
|
2022-11-27 11:20:29 -07:00
|
|
|
// SPDX-License-Identifier: MIT
|
2019-05-06 19:12:51 -06:00
|
|
|
|
2021-11-16 08:25:33 -07:00
|
|
|
package migration
|
2019-05-06 19:12:51 -06:00
|
|
|
|
|
|
|
// Repository defines a standard repository information
|
|
|
|
type Repository struct {
|
2020-09-15 08:37:44 -06:00
|
|
|
Name string
|
|
|
|
Owner string
|
2020-12-26 20:34:19 -07:00
|
|
|
IsPrivate bool `yaml:"is_private"`
|
|
|
|
IsMirror bool `yaml:"is_mirror"`
|
2020-09-15 08:37:44 -06:00
|
|
|
Description string
|
2022-09-04 04:47:56 -06:00
|
|
|
CloneURL string `yaml:"clone_url"` // SECURITY: This must be checked to ensure that is safe to be used
|
2020-12-26 20:34:19 -07:00
|
|
|
OriginalURL string `yaml:"original_url"`
|
2020-09-15 08:37:44 -06:00
|
|
|
DefaultBranch string
|
2019-05-06 19:12:51 -06:00
|
|
|
}
|