mirror of
https://github.com/go-gitea/gitea
synced 2024-11-04 05:09:03 +01:00
825efa2605
* Add Ref to api.Issue This PR adds Ref to api.Issue and adds the backend parts to the migrator. Fix #13918 Signed-off-by: Andrew Thornton <art27@cantab.net>
28 lines
658 B
Go
28 lines
658 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 base
|
|
|
|
import "time"
|
|
|
|
// Issue is a standard issue information
|
|
type Issue struct {
|
|
Number int64
|
|
PosterID int64
|
|
PosterName string
|
|
PosterEmail string
|
|
Title string
|
|
Content string
|
|
Ref string
|
|
Milestone string
|
|
State string // closed, open
|
|
IsLocked bool
|
|
Created time.Time
|
|
Updated time.Time
|
|
Closed *time.Time
|
|
Labels []*Label
|
|
Reactions []*Reaction
|
|
Assignees []string
|
|
}
|