Sign in users as soon as they confirm their email

This commit is contained in:
Petko Bordjukov 2015-08-15 07:39:43 +03:00
parent 34be35b8be
commit 2ef85a6d19
2 changed files with 15 additions and 1 deletions

View File

@ -0,0 +1,14 @@
class ConfirmationsController < Devise::ConfirmationsController
def show
self.resource = resource_class.confirm_by_token(params[:confirmation_token])
yield resource if block_given?
if resource.errors.empty?
set_flash_message(:notice, :confirmed) if is_flashing_format?
sign_in(resource_name, resource)
respond_with_navigational(resource){ redirect_to after_confirmation_path_for(resource_name, resource) }
else
respond_with_navigational(resource.errors, status: :unprocessable_entity){ render :new }
end
end
end

View File

@ -1,5 +1,5 @@
Rails.application.routes.draw do
devise_for :users, controllers: {registrations: 'registrations'}
devise_for :users, controllers: {registrations: 'registrations', confirmations: 'confirmations'}
scope module: :public do
root to: 'home#index'