git-bug/bug/operations/set_title.go

34 lines
694 B
Go
Raw Normal View History

2018-07-12 22:31:41 +03:00
package operations
import (
"github.com/MichaelMure/git-bug/bug"
)
// SetTitleOperation will change the title of a bug
2018-07-12 22:31:41 +03:00
2018-07-13 17:13:40 +03:00
var _ bug.Operation = SetTitleOperation{}
2018-07-12 22:31:41 +03:00
type SetTitleOperation struct {
bug.OpBase
2018-07-15 00:03:43 +03:00
Title string
2018-07-12 22:31:41 +03:00
}
2018-07-25 22:25:26 +03:00
func (op SetTitleOperation) Apply(snapshot bug.Snapshot) bug.Snapshot {
snapshot.Title = op.Title
return snapshot
}
func NewSetTitleOp(author bug.Person, title string) SetTitleOperation {
2018-07-12 22:31:41 +03:00
return SetTitleOperation{
OpBase: bug.NewOpBase(bug.SetTitleOp, author),
Title: title,
2018-07-12 22:31:41 +03:00
}
}
2018-07-25 22:25:26 +03:00
// Convenience function to apply the operation
func SetTitle(b *bug.Bug, author bug.Person, title string) {
setTitleOp := NewSetTitleOp(author, title)
b.Append(setTitleOp)
}