X-Git-Url: https://projects.mako.cc/source/selectricity-live/blobdiff_plain/b9f3bbdefb7bb1abd63193e2162aae1e78e1a1cb..c3cd161cbcf0f2e496fdc7888a156907188b8932:/app/controllers/account_controller.rb diff --git a/app/controllers/account_controller.rb b/app/controllers/account_controller.rb index bb614de..524d743 100644 --- a/app/controllers/account_controller.rb +++ b/app/controllers/account_controller.rb @@ -10,7 +10,9 @@ class AccountController < ApplicationController def index redirect_to(:action => 'signup') unless logged_in? || User.count > 0 end - + + #these methods provide basic functionality for the user login system + #=================================================================== def login return unless request.post? self.current_user = User.authenticate(params[:login], params[:password]) @@ -23,6 +25,10 @@ class AccountController < ApplicationController flash[:notice] = "Logged in successfully" end end + + def forgot_password + raise "Not Implemented!" + end def signup @user = User.new(params[:user]) @@ -42,4 +48,14 @@ class AccountController < ApplicationController flash[:notice] = "You have been logged out." redirect_back_or_default(:controller => '/site', :action => 'index') end + #====================================================================== + + #The following methods are for slectricity specific uses + def summary + @user = User.find(params[:id]) + end + + end + +