Skip to content

Commit

Permalink
レファクタリング
Browse files Browse the repository at this point in the history
  • Loading branch information
ksmxxxxxx committed Dec 23, 2022
1 parent a72c862 commit 0d682e2
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 2 deletions.
4 changes: 2 additions & 2 deletions app/controllers/scheduler/send_message_controller.rb
Original file line number Diff line number Diff line change
Expand Up @@ -14,8 +14,8 @@ def send_message_to_students_thirty_days_after_registration
User.students.find_each do |student|
next unless student.after_thirty_days_registration?

@komagata.comments.create!(
description: "こんにちは、komagataです。\nご登録から30日ほど経ちますが、学習について困っていることや詰まっている部分などありますでしょうか?\nもしあればお気軽におっしゃっていただければと思います。",
@komagata.comments.create(
description: I18n.t('send_message.description'),
commentable_id: Talk.find_by(user_id: student.id).id,
commentable_type: 'Talk'
)
Expand Down
2 changes: 2 additions & 0 deletions config/locales/ja.yml
Original file line number Diff line number Diff line change
Expand Up @@ -358,3 +358,5 @@ ja:
subject: '[FBC] %{user}さんが退会してから3カ月が経過しました。'
retire_notice: '%{user}さんが退会してから3カ月が経過しました。'
retire_notice: '%{user}さんが退会してから3カ月が経過しました。'
send_message:
description: "こんにちは、komagataです。\nご登録から30日ほど経ちますが、学習について困っていることや詰まっている部分などありますでしょうか?\nもしあればお気軽におっしゃっていただければと思います。"

0 comments on commit 0d682e2

Please sign in to comment.