Fix account migration feature (#5837)
* Make removable account migration * Fix error during update of account migration setting * Add notice when update account migration setting
This commit is contained in:
parent
d937a59997
commit
1b57d4dd3a
3 changed files with 10 additions and 10 deletions
|
@ -5,8 +5,6 @@ class Form::Migration
|
|||
|
||||
attr_accessor :acct, :account
|
||||
|
||||
validates :acct, presence: true
|
||||
|
||||
def initialize(attrs = {})
|
||||
@account = attrs[:account]
|
||||
@acct = attrs[:account].acct unless @account.nil?
|
||||
|
@ -22,6 +20,6 @@ class Form::Migration
|
|||
private
|
||||
|
||||
def set_account
|
||||
self.account = ResolveRemoteAccountService.new.call(acct) if account.nil? && acct.present?
|
||||
self.account = (ResolveRemoteAccountService.new.call(acct) if account.nil? && acct.present?)
|
||||
end
|
||||
end
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue