I want admin User to be able to create new users for this account and read, update users from this account.
can [:create, :read, :update], User, id: account_users_ids
is not working if account_users_ids is not en empty array. I need to split permissions to get it working
can :create, User
can [:read, :update], User, id: account_users_ids
what is wrong with defining conditions as
can [:create, :read, :update], User, id: account_user_ids
thanks