aboutsummaryrefslogblamecommitdiffstats
path: root/bug/operations/add_comment.go
blob: 9ee8dc64048a7ec623efab03ec09332ea0b54843 (plain) (tree)
1
2
3
4
5
6
7
8

                  

                                            
 
 

                                                        



                                           
                      



                                                                             
                                                                 
                                 




                                                                         


                                      





                                                              
package operations

import (
	"github.com/MichaelMure/git-bug/bug"
)

// AddCommentOperation will add a new comment in the bug

var _ bug.Operation = AddCommentOperation{}

type AddCommentOperation struct {
	bug.OpBase
	Message string
}

func NewAddCommentOp(author bug.Person, message string) AddCommentOperation {
	return AddCommentOperation{
		OpBase:  bug.NewOpBase(bug.AddCommentOp, author),
		Message: message,
	}
}

func (op AddCommentOperation) Apply(snapshot bug.Snapshot) bug.Snapshot {
	comment := bug.Comment{
		Message:  op.Message,
		Author:   op.Author,
		UnixTime: op.UnixTime,
	}

	snapshot.Comments = append(snapshot.Comments, comment)

	return snapshot
}