• P
    Deprecate force association reload by passing true · 6eae366d
    Prem Sichanugrist 提交于
    This is to simplify the association API, as you can call `reload` on the
    association proxy or the parent object to get the same result.
    
    For collection association, you can call `#reload` on association proxy
    to force a reload:
    
        @user.posts.reload   # Instead of @user.posts(true)
    
    For singular association, you can call `#reload` on the parent object to
    clear its association cache then call the association method:
    
        @user.reload.profile   # Instead of @user.profile(true)
    
    Passing a truthy argument to force association to reload will be removed
    in Rails 5.1.
    6eae366d
collection_association.rb 21.2 KB