Created
October 29, 2010 16:01
-
-
Save brecke/653809 to your computer and use it in GitHub Desktop.
login timeout authlogic
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
acts_as_authentic do |c| | |
c.logged_in_timeout = 15.minutes # default is 10.minutes | |
# c.disable_perishable_token_maintenance = true | |
c.perishable_token_valid_for = 60.minutes | |
# c.allow_http_basic_auth = true # Configuration for the HTTP basic auth feature of Authlogic. | |
# c.my_config_option = my_value # for available options see documentation in: Authlogic::ActsAsAuthentic | |
end |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment