cc643284de
Comments have an id (see Gitea[0], GitLab[1], GitHub[2], etc.), and the comment migration format must represent it during migrations so that it can be used during mirroring or incremental migrations. [0] https://try.gitea.io/api/swagger#/issue/issueGetComment [1] https://docs.gitlab.com/ee/api/discussions.html#get-single-issue-discussion-item [2] https://docs.github.com/en/rest/reference/issues#get-an-issue-comment Signed-off-by: Loïc Dachary <loic@dachary.org> Co-authored-by: Loïc Dachary <loic@dachary.org>
27 lines
816 B
Go
27 lines
816 B
Go
// Copyright 2019 The Gitea Authors. All rights reserved.
|
|
// Copyright 2018 Jonas Franz. All rights reserved.
|
|
// Use of this source code is governed by a MIT-style
|
|
// license that can be found in the LICENSE file.
|
|
|
|
package migration
|
|
|
|
import "time"
|
|
|
|
// Comment is a standard comment information
|
|
type Comment struct {
|
|
IssueIndex int64 `yaml:"issue_index"`
|
|
Index int64
|
|
PosterID int64 `yaml:"poster_id"`
|
|
PosterName string `yaml:"poster_name"`
|
|
PosterEmail string `yaml:"poster_email"`
|
|
Created time.Time
|
|
Updated time.Time
|
|
Content string
|
|
Reactions []*Reaction
|
|
}
|
|
|
|
// GetExternalName ExternalUserMigrated interface
|
|
func (c *Comment) GetExternalName() string { return c.PosterName }
|
|
|
|
// ExternalID ExternalUserMigrated interface
|
|
func (c *Comment) GetExternalID() int64 { return c.PosterID }
|