diff options
author | Eugen Rochko <eugen@zeonfederated.com> | 2019-09-19 20:58:19 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2019-09-19 20:58:19 +0200 |
commit | 3ed94dcc1acf73f1d0d1ab43567b88ee953f57c9 (patch) | |
tree | 3bec67e9d52943779f1b4070556ccab8d64bf6a4 /app/models/form | |
parent | b6df9c10671cd7bf48de3dbd7a94a92fb0a148ec (diff) |
Add account migration UI (#11846)
Fix #10736 - Change data export to be available for non-functional accounts - Change non-functional accounts to include redirecting accounts
Diffstat (limited to 'app/models/form')
-rw-r--r-- | app/models/form/migration.rb | 25 |
1 files changed, 0 insertions, 25 deletions
diff --git a/app/models/form/migration.rb b/app/models/form/migration.rb deleted file mode 100644 index c2a8655e1..000000000 --- a/app/models/form/migration.rb +++ /dev/null @@ -1,25 +0,0 @@ -# frozen_string_literal: true - -class Form::Migration - include ActiveModel::Validations - - attr_accessor :acct, :account - - def initialize(attrs = {}) - @account = attrs[:account] - @acct = attrs[:account].acct unless @account.nil? - @acct = attrs[:acct].gsub(/\A@/, '').strip unless attrs[:acct].nil? - end - - def valid? - return false unless super - set_account - errors.empty? - end - - private - - def set_account - self.account = (ResolveAccountService.new.call(acct) if account.nil? && acct.present?) - end -end |