trabajo-afectivo/test/fixtures/seeds.rb

22 lines
492 B
Ruby
Raw Normal View History

# encoding: utf-8
# inital data set as extention to db/seeds.rb
2016-01-19 22:30:23 +00:00
# create email address and apply it to all groups
2016-04-26 10:59:50 +00:00
channel_id = nil
channel = Channel.find_by(area: 'Email::Notification', active: true)
if channel
channel_id = channel
end
email_address = EmailAddress.create_if_not_exists(
realname: 'Zammad',
email: 'zammad@localhost',
2016-04-26 10:59:50 +00:00
channel_id: channel_id,
updated_by_id: 1,
created_by_id: 1
)
Group.all.each {|group|
group.email_address_id = email_address.id
group.save
}