2020-09-30 05:11:33 +00:00
|
|
|
// 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() {
|
2020-10-05 12:23:32 +00:00
|
|
|
fmt.Printf("\nDeadline: %s\n", FormatTime(*milestone.Deadline))
|
2020-09-30 05:11:33 +00:00
|
|
|
}
|
|
|
|
}
|