Merge branch 'master' into glitch-soc/merge-upstream
Conflicts: - Gemfile - Gemfile.lock - app/controllers/about_controller.rb - app/controllers/auth/sessions_controller.rb
This commit is contained in:
		@@ -57,6 +57,8 @@ class Api::V1::Accounts::StatusesController < Api::BaseController
 | 
			
		||||
  end
 | 
			
		||||
 | 
			
		||||
  def pinned_scope
 | 
			
		||||
    return Status.none if @account.blocking?(current_account)
 | 
			
		||||
 | 
			
		||||
    @account.pinned_statuses
 | 
			
		||||
  end
 | 
			
		||||
 | 
			
		||||
 
 | 
			
		||||
@@ -33,7 +33,7 @@ class Api::V1::AccountsController < Api::BaseController
 | 
			
		||||
  def follow
 | 
			
		||||
    FollowService.new.call(current_user.account, @account, reblogs: truthy_param?(:reblogs))
 | 
			
		||||
 | 
			
		||||
    options = @account.locked? ? {} : { following_map: { @account.id => { reblogs: truthy_param?(:reblogs) } }, requested_map: { @account.id => false } }
 | 
			
		||||
    options = @account.locked? || current_user.account.silenced? ? {} : { following_map: { @account.id => { reblogs: truthy_param?(:reblogs) } }, requested_map: { @account.id => false } }
 | 
			
		||||
 | 
			
		||||
    render json: @account, serializer: REST::RelationshipSerializer, relationships: relationships(options)
 | 
			
		||||
  end
 | 
			
		||||
 
 | 
			
		||||
		Reference in New Issue
	
	Block a user