diff options
author | nullkal <nullkal@nil.nu> | 2017-11-28 22:31:23 +0900 |
---|---|---|
committer | Eugen Rochko <eugen@zeonfederated.com> | 2017-11-28 14:31:23 +0100 |
commit | 1b57d4dd3a64cdafd74a12ff67502795b06a4eb2 (patch) | |
tree | 5de356c053d958c634670f6b262558285c921988 /app/models | |
parent | d937a59997f60e9aa7a022d84792fc50473bf3d5 (diff) |
Fix account migration feature (#5837)
* Make removable account migration * Fix error during update of account migration setting * Add notice when update account migration setting
Diffstat (limited to 'app/models')
-rw-r--r-- | app/models/form/migration.rb | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/app/models/form/migration.rb b/app/models/form/migration.rb index 53cee7ee1..b74987337 100644 --- a/app/models/form/migration.rb +++ b/app/models/form/migration.rb @@ -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 |