From fc198a8b4ca6d22eaedee2cfb03e088432dc4b30 Mon Sep 17 00:00:00 2001 From: Eugen Rochko Date: Mon, 3 Oct 2016 16:38:22 +0200 Subject: Adding e-mail confirmations --- app/controllers/auth/confirmations_controller.rb | 3 +++ 1 file changed, 3 insertions(+) create mode 100644 app/controllers/auth/confirmations_controller.rb (limited to 'app/controllers/auth/confirmations_controller.rb') diff --git a/app/controllers/auth/confirmations_controller.rb b/app/controllers/auth/confirmations_controller.rb new file mode 100644 index 000000000..b8e9316f1 --- /dev/null +++ b/app/controllers/auth/confirmations_controller.rb @@ -0,0 +1,3 @@ +class Auth::ConfirmationsController < Devise::ConfirmationsController + layout 'auth' +end -- cgit