You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository has been archived by the owner on Feb 6, 2024. It is now read-only.
I just built a local CASino Application with the configuration outlined below. I am using the casino and casino-activerecord_authenticator gems. In my other rails application, we are using Authlogic (https://github.com/binarylogic/authlogic). The encrypted password field is called 'crypted password'. I am not able to authenticate with the current configuration. I think I read that CASino supports Bcrypt by default. Is there a way to change my configuration to work with the Authlogic crypted password?
I just built a local CASino Application with the configuration outlined below. I am using the casino and casino-activerecord_authenticator gems. In my other rails application, we are using Authlogic (https://github.com/binarylogic/authlogic). The encrypted password field is called 'crypted password'. I am not able to authenticate with the current configuration. I think I read that CASino supports Bcrypt by default. Is there a way to change my configuration to work with the Authlogic crypted password?
development:
<<: *defaults
authenticators:
my_user_database:
authenticator: "ActiveRecord"
options:
connection:
adapter: "mysql2"
host: "########"
username: "####"
password: "####"
database: "####_dev"
table: "users"
username_column: "username"
password_column: "crypted_password"
The text was updated successfully, but these errors were encountered: