mailr/components/webmail/mail_pref.rb

10 lines
200 B
Ruby

require_association 'customer'
class MailPref < ActiveRecord::Base
belongs_to :customer
def MailPref.find_by_customer(customer_id)
find_first(["customer_id = #{customer_id}"])
end
end