Merge remote-tracking branch 'origin/master' into gs-master
Conflicts: .travis.yml Gemfile.lock README.md app/controllers/settings/follower_domains_controller.rb app/controllers/statuses_controller.rb app/javascript/mastodon/locales/ja.json app/lib/feed_manager.rb app/models/media_attachment.rb app/models/mute.rb app/models/status.rb app/services/mute_service.rb app/views/home/index.html.haml app/views/stream_entries/_simple_status.html.haml config/locales/ca.yml config/locales/en.yml config/locales/es.yml config/locales/fr.yml config/locales/nl.yml config/locales/pl.yml config/locales/pt-BR.yml config/themes.yml
This commit is contained in:
		@@ -21,7 +21,7 @@ class Api::V1::Accounts::CredentialsController < Api::BaseController
 | 
			
		||||
  private
 | 
			
		||||
 | 
			
		||||
  def account_params
 | 
			
		||||
    params.permit(:display_name, :note, :avatar, :header, :locked)
 | 
			
		||||
    params.permit(:display_name, :note, :avatar, :header, :locked, fields_attributes: [:name, :value])
 | 
			
		||||
  end
 | 
			
		||||
 | 
			
		||||
  def user_settings_params
 | 
			
		||||
 
 | 
			
		||||
@@ -5,6 +5,7 @@ class Api::V1::AccountsController < Api::BaseController
 | 
			
		||||
  before_action -> { doorkeeper_authorize! :follow }, only: [:follow, :unfollow, :block, :unblock, :mute, :unmute]
 | 
			
		||||
  before_action :require_user!, except: [:show]
 | 
			
		||||
  before_action :set_account
 | 
			
		||||
  before_action :check_account_suspension, only: [:show]
 | 
			
		||||
 | 
			
		||||
  respond_to :json
 | 
			
		||||
 | 
			
		||||
@@ -54,4 +55,8 @@ class Api::V1::AccountsController < Api::BaseController
 | 
			
		||||
  def relationships(**options)
 | 
			
		||||
    AccountRelationshipsPresenter.new([@account.id], current_user.account_id, options)
 | 
			
		||||
  end
 | 
			
		||||
 | 
			
		||||
  def check_account_suspension
 | 
			
		||||
    gone if @account.suspended?
 | 
			
		||||
  end
 | 
			
		||||
end
 | 
			
		||||
 
 | 
			
		||||
@@ -18,7 +18,7 @@ class Api::V1::StatusesController < Api::BaseController
 | 
			
		||||
 | 
			
		||||
  def context
 | 
			
		||||
    ancestors_results   = @status.in_reply_to_id.nil? ? [] : @status.ancestors(DEFAULT_STATUSES_LIMIT, current_account)
 | 
			
		||||
    descendants_results = @status.descendants(current_account)
 | 
			
		||||
    descendants_results = @status.descendants(DEFAULT_STATUSES_LIMIT, current_account)
 | 
			
		||||
    loaded_ancestors    = cache_collection(ancestors_results, Status)
 | 
			
		||||
    loaded_descendants  = cache_collection(descendants_results, Status)
 | 
			
		||||
 | 
			
		||||
 
 | 
			
		||||
		Reference in New Issue
	
	Block a user