-
Notifications
You must be signed in to change notification settings - Fork 71
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
提出物に提出者最終コメント日時とメンター最終コメント日時を追加する #3111
提出物に提出者最終コメント日時とメンター最終コメント日時を追加する #3111
Conversation
cd2a1ad
to
288b7ee
Compare
📝 |
0029df7
to
2512731
Compare
2c3cc6f
to
f7a9190
Compare
@yamadaab |
確認が遅れて申し訳ありません。本日中にレビュー致します🙇♂️ |
遅くなりすみません。大丈夫だと思います!🙇♂️ |
@Daichi831 すみません、僕としては、二つのカラムを追加するのは、一覧の表示を早くするのに必要なのでお願いしたいと思っていました。 ですので、見た目上の表示を増やすというのは考えていませんでした。 こちらは @machida さんと話してそうなった感じですかね? |
@komagata |
最終コメント日時の表示はそのままで進めることになりました。 |
@machida |
@Daichi831 @komagata デザイン入れました。提出物個別ページには最終コメントを出さないようにしましたー。 |
200add6
to
dc522c8
Compare
テスト通ったのでマージしますー |
あ、まだレビューが通ってなかった。 @komagata レビューお願いします。 |
app/models/comment_callbacks.rb
Outdated
# 最終日時をリセットする | ||
product.mentor_last_comment_at = nil | ||
product.self_last_comment_at = nil | ||
# 最新日時を上書きする |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
コメントを入れるのであれば同じ意味のメソッドとしてしまうのがわかりやすいかもです〜
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
こちら最終日時のリセット部分はメソッドにしました〜
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
確認しました、OKですー🙆♂️
issue #3002
概要
提出物に
self_last_comment_at
,mentor_last_comment_at
の2つのカラムを追加するそれぞれは提出物に対する提出者の最終コメント日時、メンターの最終コメント日時です。
表示されるのは両者のうち最新の日時が表示されます。
この機能により提出物を確認した際にメンターのコメント待ちなのか判断が簡単にできるようになります。
一覧ページ
個別ページ
既存の提出物にデータを挿入するdata migrationスクリプトを作成
既存の提出物にはコメントがついていますがカラムに保存されるのはこの機能の実装後にされたコメントに対してです。
そこで既存の提出物のカラムにもデータを挿入するためのdata migrationスクリプトを作成しました。