Sha256: 89e59eb8af83468ccfd0356b3694e0cf38fd40f5137a59b1504006df912c4859
Contents?: true
Size: 875 Bytes
Versions: 4
Compression:
Stored size: 875 Bytes
Contents
class Devise::ConfirmationsController < ApplicationController include Devise::Controllers::InternalHelpers # GET /resource/confirmation/new def new build_resource render_with_scope :new end # POST /resource/confirmation def create self.resource = resource_class.send_confirmation_instructions(params[resource_name]) if resource.errors.empty? set_flash_message :notice, :send_instructions redirect_to new_session_path(resource_name) else render_with_scope :new end end # GET /resource/confirmation?confirmation_token=abcdef def show self.resource = resource_class.confirm!(:confirmation_token => params[:confirmation_token]) if resource.errors.empty? set_flash_message :notice, :confirmed sign_in_and_redirect(resource_name, resource) else render_with_scope :new end end end
Version data entries
4 entries across 4 versions & 1 rubygems