7 lines
289 B
Ruby
7 lines
289 B
Ruby
# User sessions. Refers to the "User" class automatically (by its name).
|
|
# See also: https://github.com/binarylogic/authlogic
|
|
class UserSession < Authlogic::Session::Base
|
|
# specify configuration here, such as:
|
|
# logout_on_timeout true
|
|
# ...many more options in the documentation
|
|
end
|