メッセージテーブルにはmodels/message.rb
どちらの列もありません。ここでは、一度にすべてのユーザーにメッセージを送信するモードを切り替えるためだけにチェックボックス フラグ
を使用したいと考えています。send_to_all
send_to_all
どうやってやるの?
ビュー/メッセージ/new.html.erb
<%= f.check_box :send_to_all, :label => 'Send to all Users' %> Check if you want to send to all users at once.
messages_controller.rb
if params[:messages][:send_to_all]
The action to send the same message to all users
else
The action to send the message to a user
end