我正在使用名为acts_as_follower
(https://github.com/tcocca/acts_as_follower)的 gem
然后我在用户表中有一列last_active_at
(用户模型)
在这里,我要获取 current_user 关注的所有用户。
它必须由last_active_at
我试过这个,但它不按顺序。我该如何解决?
控制器
@users = current_user.following_users(order: 'users.last_active_at DESC')
@users_followed = Kaminari.paginate_array(@users)