aboutsummaryrefslogtreecommitdiffstats
path: root/bug/op_set_status.go
diff options
context:
space:
mode:
authorMichael Muré <batolettre@gmail.com>2019-02-24 23:05:03 +0100
committerMichael Muré <batolettre@gmail.com>2019-03-01 22:52:54 +0100
commitc235d89d36500e58e3bcadda94e9cab06023dd55 (patch)
treec2ee84316886cca3e439dbc12f64d6a06ddd7c18 /bug/op_set_status.go
parent46beb4b886761ff69abe2ce45c2498a4fafe50d9 (diff)
downloadgit-bug-c235d89d36500e58e3bcadda94e9cab06023dd55.tar.gz
commands: show the last modification time in "user"
Diffstat (limited to 'bug/op_set_status.go')
-rw-r--r--bug/op_set_status.go5
1 files changed, 3 insertions, 2 deletions
diff --git a/bug/op_set_status.go b/bug/op_set_status.go
index 6deb1675..0105d78d 100644
--- a/bug/op_set_status.go
+++ b/bug/op_set_status.go
@@ -5,6 +5,7 @@ import (
"github.com/MichaelMure/git-bug/identity"
"github.com/MichaelMure/git-bug/util/git"
+ "github.com/MichaelMure/git-bug/util/timestamp"
"github.com/pkg/errors"
)
@@ -37,7 +38,7 @@ func (op *SetStatusOperation) Apply(snapshot *Snapshot) {
item := &SetStatusTimelineItem{
hash: hash,
Author: op.Author,
- UnixTime: Timestamp(op.UnixTime),
+ UnixTime: timestamp.Timestamp(op.UnixTime),
Status: op.Status,
}
@@ -114,7 +115,7 @@ func NewSetStatusOp(author identity.Interface, unixTime int64, status Status) *S
type SetStatusTimelineItem struct {
hash git.Hash
Author identity.Interface
- UnixTime Timestamp
+ UnixTime timestamp.Timestamp
Status Status
}