Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

4
votes
4answers
646 views

Rails: Is there an equivalent to save_without_validation which skips after_save filters?

I have an after_save filter which I dont want to trigger in a specific instance. Is there a way to do this similar to save_without_validation? Thanks,
2
votes
2answers
191 views

How can I invoke the after_save callback when using 'counter_cache'?

I have a model that has counter_cache enabled for an association: class Post belongs_to :author, :counter_cache => true end class Author has_many :posts end I am also using a cache fragment ...
1
vote
1answer
69 views

How can I do a global Model afterSave() on Cake?

How can I do a global Model afterSave() on Cake? I want to do some things right after a save is done. Thanks, Gino
1
vote
1answer
2k views

Rails: check if the model was really saved in after_save

ActiveRecord use to call after_save callback each time save method is called even if the model was not changed and no insert/update query spawned. This is the default behaviour actually. And that is ...
0
votes
3answers
119 views

rspec testing has_many :through and after_save

I have an (I think) relatively straightforward has_many :through relationship with a join table: class User < ActiveRecord::Base has_many :user_following_thing_relationships has_many :things, ...
0
votes
1answer
29 views

Rails - Trying to flip an active flag in children associations

I have two models, Forums and Topics, Forums has many Topics. Each has an active boolean. When I flip the active flag on a Forum, I want its Topics to all get their flag flipped as well. My thought ...
0
votes
1answer
171 views

after_save callback with virtual attributes Rails 3

I don't know if this is possible so I thought I would ask. 1. Give a model some virtual attributes 2. Assign values to the model and the virtual attributes 3. Save the model 4. Use a callback ...
0
votes
1answer
120 views

Using after_save to update all belongs_to records

I'm building a project management application in Ruby on Rails (3.0). I am trying to figure out how to update all the tasks of a project on update of a project column. Here is the situation. I am ...
0
votes
2answers
304 views

Rails ActiveRecord using recently saved record id in after_save callback

I want to use recently stored record ID in after_save callback, is that possible if yes how? after_save :create_children def create_children  self.id end Update: Sorry there was something ...
0
votes
1answer
741 views

deprecated after_save solution in rails 3

hi I am create one application in rails 3 I am using paperclip in which i want to invoke one paperclip function for generate a thumbnail of image but when I invoke a after_save method it will ...
0
votes
1answer
227 views

before insert and after delete

i am somehow lost again in my beginners project. I am adding records for flights which have a takeoff and a landing time. So everytime i am inserting a flight oder deleting it (to edit is another ...
0
votes
1answer
203 views

Why is afterSave() inside app_model.php always fires?

Why is afterSave() inside app_model.php always triggering on every page load? class AppModel extends Model { public $cacheQueries = true; var $actsAs = array('Containable'); ...
0
votes
1answer
96 views

Is it possible to do an aftersave() on an app_controller.php in CakePHP?

Is it possible to do an aftersave() on an app_controller.php in CakePHP? I want to detect this on the app_controller for global use so I won't redo it on each controller or model. Thanks, S
-1
votes
2answers
74 views

Determine what ids were removed from array in Rails after_save callback?

I am trying to figure out how i can tell what has changed in an array in the after save callback. Here is an example of code i am using: class User < ActiveRecord::Base has_many :user_maps, ...