EditCreateComment is a convenience function to edit the body of a bug (the first comment)
(b Interface, author identity.Interface, unixTime int64, message string, files []repository.Hash, metadata map[string]string)
| 125 | |
| 126 | // EditCreateComment is a convenience function to edit the body of a bug (the first comment) |
| 127 | func EditCreateComment(b Interface, author identity.Interface, unixTime int64, message string, files []repository.Hash, metadata map[string]string) (entity.CombinedId, *EditCommentOperation, error) { |
| 128 | createOp := b.FirstOp().(*CreateOperation) |
| 129 | return EditComment(b, author, unixTime, createOp.Id(), message, files, metadata) |
| 130 | } |
no test coverage detected