You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Accessing to /users/search tries to load object a raises error:
filter_access_to tried to find User from params[:id] (nil), because attribute_check is enabled and @user isn't set, but failed: ActiveRecord::RecordNotFound: Couldn't find User with 'id'=
It seems that
:additional_collection
attribute is ignored in Rails 4 (4.2.1) or when:strong_parameters
is set totrue
. Example:Accessing to
/users/search
tries to load object a raises error:At the moment the line
declarative_authorization/lib/declarative_authorization/in_controller.rb
Line 510 in 45e91af
is:
But it seems that correct one should be:
@zeiv - is that correct?
The text was updated successfully, but these errors were encountered: