我有一个 Rails 4 应用程序,我正在尝试使用Searchkick gem 搜索我的任务模型。但是,我只希望搜索结果包含当前用户具有特定Rolify角色的任务。基本上,用户无法搜索其他用户的任务。
Rolify gem 具有获取当前用户具有特定角色的任务的方法。
Task.with_role(:viewer, current_user) #=> Tasks where the current user has a viewer role.
我无法弄清楚如何过滤 Searchkick 结果以仅搜索上面代码中返回的任务。我想做这样的事情,
Task.with_role(:viewer, current_user).search("foo") #=> Returns all Tasks that match foo
但是,它包括与 foo 匹配的所有任务,而不仅仅是与 foo 匹配的当前用户的任务。我知道 Rolify 使用一个 UsersRoles 表来关联用户和角色,但我不知道如何将它与 Task 模型的角色关联起来。
是否可以在 Searchkick 查询中搜索属于当前用户的某个角色的任务模型角色?