optimize query

pull/349/head
Pete Matsyburka 1 year ago
parent 049b9c78c2
commit 85f8a92721

@ -5,13 +5,18 @@ module Abilities
module_function
def collection(user, ability: nil)
template_ids = Template.where(account_id: user.account_id).select(:id)
shared_ids =
Template.joins(:template_sharings)
.where(template_sharings: { ability:,
account_id: [user.account_id, TemplateSharing::ALL_ID] }.compact)
.select(:id)
TemplateSharing.where({ ability:,
account_id: [user.account_id, TemplateSharing::ALL_ID] }.compact)
.select(:template_id)
join_query = Template.arel_table
.join(template_ids.arel.union(shared_ids.arel).as('union_ids'))
.on(Template.arel_table[:id].eq(Arel::Table.new(:union_ids)[:id]))
Template.where(account_id: user.account_id).or(Template.where(id: shared_ids))
Template.joins(join_query.join_sources.first)
end
def entity(template, user:, ability: nil)

Loading…
Cancel
Save