Skip to content

Instantly share code, notes, and snippets.

@ukstudio
Created June 7, 2010 11:39
Show Gist options
  • Select an option

  • Save ukstudio/428569 to your computer and use it in GitHub Desktop.

Select an option

Save ukstudio/428569 to your computer and use it in GitHub Desktop.
class SessionsController < ApplicationController
def new
end
def create
authenticate!
redirect_to dashboard_path
end
def destroy
logout
redirect_to login_path
end
def unauthenticated
flash[:notice] = warden.message
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment