He**llo,
Given an Indextank index like so:
class Threads < ActiveRecord::Base
has_many :permissions
include Tanker
tankit 'rails_3_demo' do
indexes :content
end
after_save :update_tank_indexes
after_destroy :delete_tank_indexes
end
This index exists in my Thread model. Issue is threads have permissions. Currently if I allowed a user to search across the index they would be searching across all user's threads. What is the smart way to handle permissions so I user can only search across threads the user has permissions to access. Thanks**
SCHEMA:
USER (id)
PROJECT (id)
PERMISSION (user_id, project_id)
Thread (project_id)
As long as a user has a permission record for a project they can view all of that project's threads.