Git Product home page Git Product logo

Comments (7)

pkarman avatar pkarman commented on August 19, 2024

+1 to this problem, also seen when migrating from Rails 3.2 to 4.2.

from acts_as_paranoid.

itsNikolay avatar itsNikolay commented on August 19, 2024

+ 1 from rails 3 to 4 migration

from acts_as_paranoid.

zzak avatar zzak commented on August 19, 2024

This should be fixed by now, can you confirm? <3

from acts_as_paranoid.

ruprict avatar ruprict commented on August 19, 2024

Unfortunately, I have moved on from that project and can't confirm it. Any chance one of the other commenters can check it easily?

from acts_as_paranoid.

pkarman avatar pkarman commented on August 19, 2024

I've also moved on from that project. We moved entirely away from this gem in the meantime:
https://github.com/popuparchive/pop-up-archive/blob/master/Gemfile#L90

from acts_as_paranoid.

zzak avatar zzak commented on August 19, 2024

I belive this was fixed by e8f7fbb and released in 0.5.0.beta2.

If you're still having this issue please re-open the ticket.

Thank you!

from acts_as_paranoid.

bjeanes avatar bjeanes commented on August 19, 2024

I think this is a similar underlying issue but with accessing proxy_association. This is also upgrading from Rails 3 to 4 (and AAP 0.4.5 -> 0.5.0):

# illustrative code only, loosely based on my situation
class User < ActiveRecord::Base
  has_many :projects, through: :collaboratorships do
    def owned
      where('projects.owner_id = ?', proxy_association.owner.id)
    end

    def collaborated
      where('projects.owner_id <> ?', proxy_association.owner.id)
    end
  end
end

# In Rails 3.2.22.5, with AAP 0.4.5:
user.projects.with_deleted.collaborated #=> [#<Project ...>, ...]
user.projects.collaborated.with_deleted #=> [#<Project ...>, ...]

# In Rails 4.0.13, with AAP 0.5.0:
user.projects.with_deleted.collaborated #=> NoMethodError: undefined local variable or method `proxy_association' for #<ActiveRecord::Relation []>
user.projects.collaborated.with_deleted #=> [#<Project ...>, ...]

I know these are all old and unmaintained versions of things so I'm not so much posting here with the expectation that it will be fixed, but for documentation purposes in case others run into it too. This GH issue seems the closest likely relative to my issue but was not fixed by e8f7fbb so probably distinct in cause.

In my case, as can be seen above, putting with_deleted last resolves the issue for me. However, whatever scope is returned by with_deleted loses its proxy context.

from acts_as_paranoid.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.