Fix i18n key typo

This commit is contained in:
wvengen 2016-03-07 21:06:49 +01:00
parent 179f442a87
commit 5d9e1845b7
7 changed files with 10 additions and 10 deletions

View file

@ -6,7 +6,7 @@ class Message < ActiveRecord::Base
belongs_to :reply_to_message, :class_name => "Message", :foreign_key => "reply_to"
serialize :recipients_ids, Array
attr_accessor :sent_to_all, :recipient_tokens
attr_accessor :send_to_all, :recipient_tokens
scope :pending, -> { where(:email_state => 0) }
scope :sent, -> { where(:email_state => 1) }
@ -35,7 +35,7 @@ class Message < ActiveRecord::Base
def clean_up_recipient_ids
add_recipients Group.find(group_id).users unless group_id.blank?
self.recipients_ids = recipients_ids.uniq.reject { |id| id.blank? } unless recipients_ids.nil?
self.recipients_ids = User.all.collect(&:id) if sent_to_all == "1"
self.recipients_ids = User.all.collect(&:id) if send_to_all == "1"
end
def add_recipients(users)