2018-07-12 13:44:46 +03:00
|
|
|
package bug
|
|
|
|
|
2018-07-19 19:10:45 +03:00
|
|
|
import (
|
2018-08-03 00:37:49 +03:00
|
|
|
"github.com/MichaelMure/git-bug/util"
|
2018-07-19 19:10:45 +03:00
|
|
|
"github.com/dustin/go-humanize"
|
|
|
|
"time"
|
|
|
|
)
|
2018-07-17 21:51:09 +03:00
|
|
|
|
2018-07-12 13:44:46 +03:00
|
|
|
type Comment struct {
|
2018-08-01 03:15:40 +03:00
|
|
|
Author Person
|
|
|
|
Message string
|
2018-08-03 00:37:49 +03:00
|
|
|
Files []util.Hash
|
2018-07-14 23:18:40 +03:00
|
|
|
|
|
|
|
// Creation time of the comment.
|
|
|
|
// Should be used only for human display, never for ordering as we can't rely on it in a distributed system.
|
2018-07-18 01:16:06 +03:00
|
|
|
UnixTime int64
|
2018-07-12 13:44:46 +03:00
|
|
|
}
|
2018-07-17 21:51:09 +03:00
|
|
|
|
|
|
|
func (c Comment) FormatTime() string {
|
2018-07-19 19:10:45 +03:00
|
|
|
t := time.Unix(c.UnixTime, 0)
|
|
|
|
return humanize.Time(t)
|
2018-07-17 21:51:09 +03:00
|
|
|
}
|