58
edits
Changes
m
* ==== app/controller/application.rb====
* ==== app/controllers/user_sessions_controller.rb====
* ==== app/controllers/users_controller.rb====
* ==== app/models/user====
* ==== app/views/user_sessions/new====
* ==== app/views/users/edit====
* ==== config/environment.rb====
→Core Umlaut Files Added or Updated
=== Core Umlaut Files Added or Updated ===
Several core Umlaut files were updated in order to develop the UmlautAuth module.
The application controller was updated to filter passwords and provide two methods for accessing the current user session and the current user. The method current_user_session (aliased as has_logged_in_user) returns nil if no user session has been established. The method current_user (aliased as logged_in_user) return either nil or the current logged in user.
The user sessions controller manages the routing of user session requests. Three methods are available:
# new - renders the login screen or redirects to external login screen
# validate - validates the user upon login
# destroy - processes logout
The users controller manages the routing of user related requests. Two methods are available:
# edit (also called from show) - renders the user preferences screen.
app/models/user_sessions
Extends Authlogic::Session::Base
Serializes user_attributes and adds acts_as_authentic functionality to leverage the Authlogic gem. Also sets to_param to username rather than id for prettier urls.
The default login screen
The default user preferences screen. Users can update mobile phone numbers and the like.
Added authlogic gem:
<pre>