From dd136858f1ea40ad3c94191d647487fa4f31926c Mon Sep 17 00:00:00 2001 From: Daniel Baumann Date: Fri, 18 Oct 2024 20:33:49 +0200 Subject: Adding upstream version 9.0.0. Signed-off-by: Daniel Baumann --- modules/migration/repo.go | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) create mode 100644 modules/migration/repo.go (limited to 'modules/migration/repo.go') diff --git a/modules/migration/repo.go b/modules/migration/repo.go new file mode 100644 index 0000000..22c2cf6 --- /dev/null +++ b/modules/migration/repo.go @@ -0,0 +1,17 @@ +// Copyright 2019 The Gitea Authors. All rights reserved. +// Copyright 2018 Jonas Franz. All rights reserved. +// SPDX-License-Identifier: MIT + +package migration + +// Repository defines a standard repository information +type Repository struct { + Name string + Owner string + IsPrivate bool `yaml:"is_private"` + IsMirror bool `yaml:"is_mirror"` + Description string + CloneURL string `yaml:"clone_url"` // SECURITY: This must be checked to ensure that is safe to be used + OriginalURL string `yaml:"original_url"` + DefaultBranch string +} -- cgit v1.2.3