Sign in users as soon as they confirm their email
This commit is contained in:
parent
34be35b8be
commit
2ef85a6d19
|
@ -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
|
|
@ -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'
|
||||
|
|
Loading…
Reference in New Issue