
hooks not executing after object saved to db
Reported by Ryan | December 28th, 2010 @ 05:19 PM
I have noticed that hooks on :update,:save, or :create will not be executed once an object has been saved to the db
for instance:
class User
include DataMapper::Resource
property :id, Serial
before :save do
puts "hello World"
end
before :update do
puts "hello World"
end
before :create do
puts "hello world"
end
Command Line Output
>> newUser = User.create
Hello World
=> true
>>newUser.save
=> true
Comments and changes to this ticket
-
Kabari December 29th, 2010 @ 11:21 PM
I think this is a another effect of the discussion under #1372
-
Ryan December 29th, 2010 @ 11:36 PM
Yes I do think this is an effect of #1372. However, as a feature I think there should be some way to set a dirty state on the model object.
Please Sign in or create a free account to add a new ticket.
With your very own profile, you can contribute to projects, track your activity, watch tickets, receive and update tickets through your email and much more.
Create your profile
Help contribute to this project by taking a few moments to create your personal profile. Create your profile »