mirror of
https://gitea.com/gitea/tea
synced 2024-10-31 21:20:23 +00:00
03ec6d0eee
dont resolve location ahead of time fixup! use local timezone for all printed times fixup! use local timezone for all printed times use local timezone for all printed times Co-authored-by: Norwin Roosen <git@nroo.de> Reviewed-on: https://gitea.com/gitea/tea/pulls/217 Reviewed-by: techknowlogick <techknowlogick@gitea.io> Reviewed-by: 6543 <6543@noreply.gitea.io>
25 lines
600 B
Go
25 lines
600 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"
|
|
)
|
|
|
|
// MilestoneDetails print an milestone formatted to stdout
|
|
func MilestoneDetails(milestone *gitea.Milestone) {
|
|
fmt.Printf("%s\n",
|
|
milestone.Title,
|
|
)
|
|
if len(milestone.Description) != 0 {
|
|
fmt.Printf("\n%s\n", milestone.Description)
|
|
}
|
|
if milestone.Deadline != nil && !milestone.Deadline.IsZero() {
|
|
fmt.Printf("\nDeadline: %s\n", FormatTime(*milestone.Deadline))
|
|
}
|
|
}
|