fastapi-users icon indicating copy to clipboard operation
fastapi-users copied to clipboard

Ready-to-use and customizable users management for FastAPI

Results 53 fastapi-users issues
Sort by recently updated
recently updated
newest added

This should fix #1048. It'll be released as a major version with breaking changes.

### Discussed in https://github.com/fastapi-users/fastapi-users/discussions/1047 Originally posted by **davidbrochart** July 25, 2022 It seems that #1037 breaks cookie authentication in [jupyverse](https://github.com/jupyter-server/jupyverse). Not sure what's going on, do you have any clue?

bug

It's possible to have it thanks to asgi-csrf. A detailed explanation and example in the doc would be nice. Add an alert in the Cookie authentication backend to invite the...

documentation

Following discussion #672, we should add details in the documentation about how you can properly override the user dependency during testing.

documentation

This is a draft for feedback, and follows on from this discussion earlier in the year: https://github.com/fastapi-users/fastapi-users/discussions/350 I've made a first attempt here at implementing refresh tokens and the "freshness...

## Describe the bug Importing `BeanieBaseUser` does not work when importing from `fastapi_users.db`, but works when importing from `fastapi_users_db_beanie`. Not sure if related to https://github.com/fastapi-users/fastapi-users/issues/978#issuecomment-1138888511 ## To Reproduce Steps to...

bug

/alembic/versions/7a47ff544945_initial_migration.py", line 47, in upgrade sa.Column('id', fastapi_users_db_sqlalchemy.generics.GUID(), nullable=False), ^^^^^^^^^^^^^^^^^^^^^^^^^^^ NameError: name 'fastapi_users_db_sqlalchemy' is not defined The migration file appears to be missing an import statement. Should I add it manually,...

bug

With just `int` as generic type we get type error: ![image](https://github.com/fastapi-users/fastapi-users/assets/47495003/a140a917-c855-42e1-9fc7-0aa1339ce806) ![image](https://github.com/fastapi-users/fastapi-users/assets/47495003/d15ab4e4-1815-4c53-8349-fa8ecdde3165) After looking at the [source code](https://github.com/fastapi-users/fastapi-users-db-sqlalchemy/blob/main/fastapi_users_db_sqlalchemy/__init__.py#L25) I found, It should be `Mapped[int]` Added import just for convenience

Bumps [python-multipart](https://github.com/andrew-d/python-multipart) from 0.0.7 to 0.0.9. Release notes Sourced from python-multipart's releases. Version 0.0.9 Add support for Python 3.12 #85. Drop support for Python 3.7 #95. Add MultipartState(IntEnum) #96. Add...

dependencies

Inheritance from this (https://github.com/fastapi-users/fastapi-users/blob/ae9f52474ba2c7baebeb923e4d03aea479765362/fastapi_users/schemas.py#L64) Base class causes fields is_active, is_superuser, is_verified to be exposed in /register endpoint auto-generated FastAPI doc. But they are not being involved in the process of...