mirror of
https://codeberg.org/forgejo/forgejo.git
synced 2024-11-01 06:48:56 +00:00
367894adc8
* add test coverage for original author conversion during migrations And create a function to factorize a code snippet that is repeated five times and would otherwise be more difficult to test and maintain consistently. Signed-off-by: Loïc Dachary <loic@dachary.org> * fix variable scope and int64 formatting * add missing calls to remapExternalUser and fix misplaced %d Co-authored-by: Loïc Dachary <loic@dachary.org> Co-authored-by: Lunny Xiao <xiaolunwen@gmail.com> Co-authored-by: wxiaoguang <wxiaoguang@gmail.com> Co-authored-by: techknowlogick <techknowlogick@gitea.io>
18 lines
628 B
Go
18 lines
628 B
Go
// Copyright 2020 The Gitea Authors. 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
|
|
|
|
// Reaction represents a reaction to an issue/pr/comment.
|
|
type Reaction struct {
|
|
UserID int64 `yaml:"user_id" json:"user_id"`
|
|
UserName string `yaml:"user_name" json:"user_name"`
|
|
Content string `json:"content"`
|
|
}
|
|
|
|
// GetExternalName ExternalUserMigrated interface
|
|
func (r *Reaction) GetExternalName() string { return r.UserName }
|
|
|
|
// GetExternalID ExternalUserMigrated interface
|
|
func (r *Reaction) GetExternalID() int64 { return r.UserID }
|