2020-01-15 20:14:07 +09:00
|
|
|
// Copyright 2020 The Gitea Authors. All rights reserved.
|
2022-11-28 03:20:29 +09:00
|
|
|
// SPDX-License-Identifier: MIT
|
2019-05-07 10:12:51 +09:00
|
|
|
|
2021-11-17 00:25:33 +09:00
|
|
|
package migration
|
2019-05-07 10:12:51 +09:00
|
|
|
|
2020-01-15 20:14:07 +09:00
|
|
|
// Reaction represents a reaction to an issue/pr/comment.
|
|
|
|
type Reaction struct {
|
2022-01-26 18:45:51 +09:00
|
|
|
UserID int64 `yaml:"user_id" json:"user_id"`
|
|
|
|
UserName string `yaml:"user_name" json:"user_name"`
|
|
|
|
Content string `json:"content"`
|
2019-05-07 10:12:51 +09:00
|
|
|
}
|
2022-02-02 03:20:28 +09:00
|
|
|
|
|
|
|
// GetExternalName ExternalUserMigrated interface
|
|
|
|
func (r *Reaction) GetExternalName() string { return r.UserName }
|
|
|
|
|
|
|
|
// GetExternalID ExternalUserMigrated interface
|
|
|
|
func (r *Reaction) GetExternalID() int64 { return r.UserID }
|