Skip to content

Commit

Permalink
service/booQへのbooQ botのコメントの投稿時、ユーザー名を表示するようにする。 (#504)
Browse files Browse the repository at this point in the history
*  first commit

* コメント投稿時のtraQへの投稿メッセージにコメントしたユーザーの表示名を表示

* displayNameをNameに修正
  • Loading branch information
masa13535 authored Sep 1, 2021
1 parent e3073b3 commit 2b3a85d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion router/comments.go
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ func PostComments(c echo.Context) error {
return c.JSON(http.StatusBadRequest, err)
}
itemInfo := fmt.Sprintf("[%v](https://%v/items/%v)", item.Name, os.Getenv("HOST"), item.ID)
message := fmt.Sprintf("### コメントを投稿しました\n%v\n%v", itemInfo, comment.Text)
message := fmt.Sprintf("### @%s がコメントを投稿しました\n%s\n%s", comment.User.Name, itemInfo, comment.Text)
_ = PostMessage(c, message, false)
return c.JSON(http.StatusCreated, res)
}
Expand Down

0 comments on commit 2b3a85d

Please sign in to comment.