rocket_auth icon indicating copy to clipboard operation
rocket_auth copied to clipboard

An implementation for an authentication API for Rocket applications.

Results 36 rocket_auth issues
Sort by recently updated
recently updated
newest added

Hi, I am attempting to use rocket_auth within a project already using Sqlx 0.6.1 and getting the following error: ``` error: one of the features ['runtime-actix-native-tls', 'runtime-async-std-native-tls', 'runtime-tokio-native-tls', 'runtime-actix-rustls', 'runtime-async-std-rustls',...

When I login with one device, the other one gets de authenticated. Is this a bug? Or is it expected?

The 'UPDATE_USER' sql code was wrong under the tokio_postgres implementation. Closes #65

It causes a database error during a password change: ```sql database-db-1 | 2023-08-13 22:02:05.531 UTC [1462] ERROR: syntax error at or near "table" at character 9 database-db-1 | 2023-08-13 22:02:05.531...

currently the workflow only checks if the project builds, but doesn't run any tests i'll open a PR for this later today if that's alright!

`login_for` method takes a Duration parameter, for how long the user should be logged in, after whose expiration I'm expecting the user to not be authorized anymore. I'm trying this...

Hello, I'm trying to create an admin user, but also keep the email and password validation via the Signup form (avoiding to use `create_user` method directly). I see there was...