Add REST API for featuring and unfeaturing a hashtag (#34489)
Co-authored-by: Matt Jankowski <matt@jankowski.online> Co-authored-by: Claire <claire.github-309c@sitedethib.com>
This commit is contained in:
		@@ -1,13 +1,15 @@
 | 
			
		||||
# frozen_string_literal: true
 | 
			
		||||
 | 
			
		||||
class TagRelationshipsPresenter
 | 
			
		||||
  attr_reader :following_map
 | 
			
		||||
  attr_reader :following_map, :featuring_map
 | 
			
		||||
 | 
			
		||||
  def initialize(tags, current_account_id = nil, **options)
 | 
			
		||||
    @following_map = if current_account_id.nil?
 | 
			
		||||
                       {}
 | 
			
		||||
                     else
 | 
			
		||||
                       TagFollow.select(:tag_id).where(tag_id: tags.map(&:id), account_id: current_account_id).each_with_object({}) { |f, h| h[f.tag_id] = true }.merge(options[:following_map] || {})
 | 
			
		||||
                     end
 | 
			
		||||
    if current_account_id.nil?
 | 
			
		||||
      @following_map = {}
 | 
			
		||||
      @featuring_map = {}
 | 
			
		||||
    else
 | 
			
		||||
      @following_map = TagFollow.select(:tag_id).where(tag_id: tags.map(&:id), account_id: current_account_id).each_with_object({}) { |f, h| h[f.tag_id] = true }.merge(options[:following_map] || {})
 | 
			
		||||
      @featuring_map = FeaturedTag.select(:tag_id).where(tag_id: tags.map(&:id), account_id: current_account_id).each_with_object({}) { |f, h| h[f.tag_id] = true }.merge(options[:featuring_map] || {})
 | 
			
		||||
    end
 | 
			
		||||
  end
 | 
			
		||||
end
 | 
			
		||||
 
 | 
			
		||||
		Reference in New Issue
	
	Block a user