Sha256: dbe2cd6fb87c2dcdfc4e27a0ee8e117c19bd89b31cb19731e2350cf43e57d7ff

Contents?: true

Size: 1.3 KB

Versions: 1

Compression:

Stored size: 1.3 KB

Contents

class Devise::InvitationsController < ApplicationController
  include Devise::Controllers::InternalHelpers
  include Devise::Controllers::Helpers

  before_filter :authenticate_resource!, :only => [:new, :create]
  before_filter :require_no_authentication, :only => [:edit, :update]
  helper_method :after_sign_in_path_for

  # GET /resource/invitation/new
  def new
    build_resource
    render_with_scope :new
  end

  # POST /resource/invitation
  def create
    self.resource = resource_class.send_invitation(params[resource_name])

    if resource.errors.empty?
      set_flash_message :notice, :send_instructions
      redirect_to after_sign_in_path_for(resource_name)
    else
      render_with_scope :new
    end
  end

  # GET /resource/invitation/edit?invitation_token=abcdef
  def edit
    self.resource = resource_class.new
    resource.invitation_token = params[:invitation_token]
    render_with_scope :edit
  end

  # PUT /resource/invitation
  def update
    self.resource = resource_class.accept_invitation!(params[resource_name])

    if resource.errors.empty?
      set_flash_message :notice, :updated
      sign_in_and_redirect(resource_name, resource)
    else
      render_with_scope :edit
    end
  end
  
protected
  
  def authenticate_resource!
    send :"authenticate_#{resource_name}!"
  end
  
end

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
lperichon-devise_invitable-0.3.0 app/controllers/devise/invitations_controller.rb