about summary refs log tree commit diff
diff options
context:
space:
mode:
authorDavid Yip <yipdw@member.fsf.org>2018-03-30 11:27:57 -0500
committerGitHub <noreply@github.com>2018-03-30 11:27:57 -0500
commit9248d1e3a73ca97eeb5d177ef2ffcb7d4d9f614c (patch)
treec516301a75c93eac580d7452952fd12cfbeed723
parent1bd12cf8ebaebfac440bcefd241b564997272ffb (diff)
parent167a2ecde097dcb2cd0e206098127e5bee398f15 (diff)
Merge pull request #407 from ThibG/glitch-soc/fixes/migration-page
Fix migration page style
-rw-r--r--app/controllers/settings/migrations_controller.rb6
1 files changed, 1 insertions, 5 deletions
diff --git a/app/controllers/settings/migrations_controller.rb b/app/controllers/settings/migrations_controller.rb
index bc6436b87..89b3f7246 100644
--- a/app/controllers/settings/migrations_controller.rb
+++ b/app/controllers/settings/migrations_controller.rb
@@ -1,10 +1,6 @@
 # frozen_string_literal: true
 
-class Settings::MigrationsController < ApplicationController
-  layout 'admin'
-
-  before_action :authenticate_user!
-
+class Settings::MigrationsController < Settings::BaseController
   def show
     @migration = Form::Migration.new(account: current_account.moved_to_account)
   end