Sha256: d5cc3145428f5052b3f34c5afdbeacd62c8978658e06a25dc4229271976f5d80

Contents?: true

Size: 1.27 KB

Versions: 6

Compression:

Stored size: 1.27 KB

Contents

class <%= session_plural_class_name %>Controller < ApplicationController
<%- if options[:authlogic] -%>
  def new
    @<%= session_singular_name %> = <%= session_class_name %>.new
  end
  
  def create
    @<%= session_singular_name %> = <%= session_class_name %>.new(params[:<%= session_singular_name %>])
    if @<%= session_singular_name %>.save
      flash[:notice] = "Logged in successfully."
      redirect_to_target_or_default("/")
    else
      render :action => 'new'
    end
  end
  
  def destroy
    @<%= session_singular_name %> = <%= session_class_name %>.find
    @<%= session_singular_name %>.destroy
    flash[:notice] = "You have been logged out."
    redirect_to "/"
  end
<%- else -%>
  def new
  end
  
  def create
    <%= user_singular_name %> = <%= user_class_name %>.authenticate(params[:login], params[:password])
    if <%= user_singular_name %>
      session[:<%= user_singular_name %>_id] = <%= user_singular_name %>.id
      flash[:notice] = "Logged in successfully."
      redirect_to_target_or_default("/")
    else
      flash.now[:error] = "Invalid login or password."
      render :action => 'new'
    end
  end
  
  def destroy
    session[:<%= user_singular_name %>_id] = nil
    flash[:notice] = "You have been logged out."
    redirect_to "/"
  end
<%- end -%>
end

Version data entries

6 entries across 6 versions & 3 rubygems

Version Path
niftier-generators-0.1.2 lib/generators/niftier/authentication/templates/sessions_controller.rb
niftier-generators-0.1.1 lib/generators/niftier/authentication/templates/sessions_controller.rb
niftier-generators-0.1.0 lib/generators/niftier/authentication/templates/sessions_controller.rb
corntrace-nifty-generators-0.4.1 lib/generators/nifty/authentication/templates/sessions_controller.rb
corntrace-nifty-generators-0.4.0 lib/generators/nifty/authentication/templates/sessions_controller.rb
nifty-generators-0.4.0 lib/generators/nifty/authentication/templates/sessions_controller.rb