diff --git a/app/controllers/concerns/publisher_controller.rb b/app/controllers/concerns/publisher_controller.rb index 1917556ed6945b1f7302a6275399608111566d28..06721e300000d4d8726a1468af5facca5eb7343a 100644 --- a/app/controllers/concerns/publisher_controller.rb +++ b/app/controllers/concerns/publisher_controller.rb @@ -18,8 +18,7 @@ module PublisherController end def show_liked_collections - # includes = [:taggings, :tags, :subject_relations, :subjects, :stage_relations, :educational_stages, :publisher, :language, :license] - render json: Collection.includes(includes).find( + render json: Collection.find( Like.where(user: publisher, likeable_type: 'Collection').pluck(:likeable_id) ) end