engine/lib/locomotive/hosting/bushido/hooks.rb

8 lines
220 B
Ruby
Raw Normal View History

2011-07-26 03:39:09 +00:00
Bushido::Data.listen("app.claimed") do |event|
puts "Saving #{Account.first.inspect} with incoming data #{event.inspect}"
account = Account.first
2011-07-26 03:39:09 +00:00
account.email = event["data"].try(:[], "email")
account.save
end