mirror of
https://gitea.com/gitea/tea.git
synced 2024-11-03 04:27:21 -05:00
2b11f408fd
Pull Detailview: add head/base-branch, reviews, mergable info print info if reviews can not be loaded No Conflicts Reviewed-on: https://gitea.com/gitea/tea/pulls/271 Reviewed-by: Norwin <noerw@noreply.gitea.io> Reviewed-by: Lunny Xiao <xiaolunwen@gmail.com> Co-Authored-By: 6543 <6543@obermui.de> Co-Committed-By: 6543 <6543@obermui.de>
25 lines
506 B
Go
25 lines
506 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 print
|
|
|
|
import (
|
|
"fmt"
|
|
|
|
"code.gitea.io/sdk/gitea"
|
|
)
|
|
|
|
// IssueDetails print an issue rendered to stdout
|
|
func IssueDetails(issue *gitea.Issue) {
|
|
OutputMarkdown(fmt.Sprintf(
|
|
"# #%d %s (%s)\n@%s created %s\n\n%s\n",
|
|
issue.Index,
|
|
issue.Title,
|
|
issue.State,
|
|
issue.Poster.UserName,
|
|
FormatTime(issue.Created),
|
|
issue.Body,
|
|
))
|
|
}
|