"Cool" and mostly crazy hotfix for acts_as_paranoid (pls read as core dev)

257 views
Skip to first unread message

Manuel Korfmann

unread,
Sep 19, 2019, 7:26:02 AM9/19/19
to Ruby on Rails: Talk

Manuel Korfmann

unread,
Sep 19, 2019, 7:44:12 AM9/19/19
to rubyonra...@googlegroups.com
Furtherly refined:

```
def create
ActiveRecord::Base.transaction do
Banal::Brainstorm.class_eval do
default_scope lambda { with_deleted }
end

@comment = Comment.new(comment_params)

@comment.save!
redirect_to banal_brainstorms_path

Banal::Brainstorm.class_eval do
default_scope lambda { where id: (unscoped.pluck(:id) - only_deleted.pluck(:id)) }
end
end
end
```

On 19. Sep 2019, at 13:31, Manuel Korfmann <ma...@korfmann.info> wrote:

Refinements didn’t work when tested properly, so I ended up with this construct

```ruby
def create
Banal::Brainstorm.class_eval do
default_scope lambda { with_deleted }
end

@comment = Comment.new(comment_params)

@comment.save!
redirect_to banal_brainstorms_path

Banal::Brainstorm.class_eval do
default_scope lambda { without_deleted }
end
end
```

On 19. Sep 2019, at 13:02, Manuel Korfmann <ma...@korfmann.info> wrote:


--
You received this message because you are subscribed to the Google Groups "Ruby on Rails: Talk" group.
To unsubscribe from this group and stop receiving emails from it, send an email to rubyonrails-ta...@googlegroups.com.
To view this discussion on the web visit https://groups.google.com/d/msgid/rubyonrails-talk/3b4e3ae7-ff53-461e-9b49-9a8189d66909%40googlegroups.com.


Manuel Korfmann

unread,
Sep 19, 2019, 7:44:12 AM9/19/19
to rubyonra...@googlegroups.com
Reply all
Reply to author
Forward
0 new messages