about summary refs log tree commit diff
path: root/app/controllers
diff options
context:
space:
mode:
authorDavid Yip <yipdw@member.fsf.org>2017-11-27 22:33:26 -0600
committerDavid Yip <yipdw@member.fsf.org>2017-11-27 22:33:26 -0600
commit7463d80ff442833a4ad299460f37c27be9b8cda1 (patch)
treeeb84f712515a4b5c59a36cbc0340781c6765a545 /app/controllers
parent8bad6bdd00254484e04570b7a631403c24e73939 (diff)
parent706e534455e2137c324c0ebb30435e7630ab7c1f (diff)
Merge remote-tracking branch 'tootsuite/master'
Diffstat (limited to 'app/controllers')
-rw-r--r--app/controllers/settings/migrations_controller.rb32
1 files changed, 32 insertions, 0 deletions
diff --git a/app/controllers/settings/migrations_controller.rb b/app/controllers/settings/migrations_controller.rb
new file mode 100644
index 000000000..711ba338f
--- /dev/null
+++ b/app/controllers/settings/migrations_controller.rb
@@ -0,0 +1,32 @@
+# frozen_string_literal: true
+
+class Settings::MigrationsController < ApplicationController
+  layout 'admin'
+
+  before_action :authenticate_user!
+
+  def show
+    @migration = Form::Migration.new(account: current_account.moved_to_account)
+  end
+
+  def update
+    @migration = Form::Migration.new(resource_params)
+
+    if @migration.valid?
+      if current_account.moved_to_account_id != @migration.account&.id
+        current_account.update!(moved_to_account: @migration.account)
+        ActivityPub::UpdateDistributionWorker.perform_async(@account.id)
+      end
+
+      redirect_to settings_migration_path
+    else
+      render :show
+    end
+  end
+
+  private
+
+  def resource_params
+    params.require(:migration).permit(:acct)
+  end
+end