2024-04-16 11:45:04 +08:00
|
|
|
// Copyright 2024 The Gitea Authors. All rights reserved.
|
|
|
|
// SPDX-License-Identifier: MIT
|
|
|
|
|
|
|
|
package common
|
|
|
|
|
|
|
|
import (
|
2025-03-27 19:40:14 +00:00
|
|
|
repo_model "forgejo.org/models/repo"
|
|
|
|
user_model "forgejo.org/models/user"
|
|
|
|
"forgejo.org/modules/git"
|
2024-04-16 11:45:04 +08:00
|
|
|
)
|
|
|
|
|
|
|
|
// CompareInfo represents the collected results from ParseCompareInfo
|
|
|
|
type CompareInfo struct {
|
|
|
|
HeadUser *user_model.User
|
|
|
|
HeadRepo *repo_model.Repository
|
|
|
|
HeadGitRepo *git.Repository
|
|
|
|
CompareInfo *git.CompareInfo
|
|
|
|
BaseBranch string
|
|
|
|
HeadBranch string
|
|
|
|
DirectComparison bool
|
|
|
|
}
|