forked from cybrespace/mastodon
		
	This commit is contained in:
		
							parent
							
								
									573414f728
								
							
						
					
					
						commit
						a3b2ea599d
					
				
					 2 changed files with 7 additions and 4 deletions
				
			
		| 
						 | 
					@ -28,6 +28,7 @@ class Settings::MigrationsController < ApplicationController
 | 
				
			||||||
  end
 | 
					  end
 | 
				
			||||||
 | 
					
 | 
				
			||||||
  def migration_account_changed?
 | 
					  def migration_account_changed?
 | 
				
			||||||
    current_account.moved_to_account_id != @migration.account&.id
 | 
					    current_account.moved_to_account_id != @migration.account&.id &&
 | 
				
			||||||
 | 
					      current_account.id != @migration.account&.id
 | 
				
			||||||
  end
 | 
					  end
 | 
				
			||||||
end
 | 
					end
 | 
				
			||||||
| 
						 | 
					
 | 
				
			||||||
| 
						 | 
					@ -7,9 +7,7 @@ class REST::AccountSerializer < ActiveModel::Serializer
 | 
				
			||||||
             :note, :url, :avatar, :avatar_static, :header, :header_static,
 | 
					             :note, :url, :avatar, :avatar_static, :header, :header_static,
 | 
				
			||||||
             :followers_count, :following_count, :statuses_count
 | 
					             :followers_count, :following_count, :statuses_count
 | 
				
			||||||
 | 
					
 | 
				
			||||||
  has_one :moved_to_account, key: :moved, serializer: REST::AccountSerializer, if: :moved?
 | 
					  has_one :moved_to_account, key: :moved, serializer: REST::AccountSerializer, if: :moved_and_not_nested?
 | 
				
			||||||
 | 
					 | 
				
			||||||
  delegate :moved?, to: :object
 | 
					 | 
				
			||||||
 | 
					
 | 
				
			||||||
  def id
 | 
					  def id
 | 
				
			||||||
    object.id.to_s
 | 
					    object.id.to_s
 | 
				
			||||||
| 
						 | 
					@ -38,4 +36,8 @@ class REST::AccountSerializer < ActiveModel::Serializer
 | 
				
			||||||
  def header_static
 | 
					  def header_static
 | 
				
			||||||
    full_asset_url(object.header_static_url)
 | 
					    full_asset_url(object.header_static_url)
 | 
				
			||||||
  end
 | 
					  end
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					  def moved_and_not_nested?
 | 
				
			||||||
 | 
					    object.moved? && object.moved_to_account.moved_to_account_id.nil?
 | 
				
			||||||
 | 
					  end
 | 
				
			||||||
end
 | 
					end
 | 
				
			||||||
| 
						 | 
					
 | 
				
			||||||
		Loading…
	
	Add table
		
		Reference in a new issue