duduru
duduru
> @Expan75, I don't think your example is relevant to the current issue. You are running a cached function inside a validator. Cached validator is a very interesting idea, nonetheless!...
I've reviewed the entire 'router API,' and it appears that the only difference is the way password length is returned. Regarding the password issue, I believe that the front-end should...
If you want to use `lifespan`, you must restrict the FastAPI version to 0.93.0 or higher. https://github.com/tiangolo/fastapi/releases/tag/0.93.0
Your function names cannot be repeated. ```py @cbv(router) class CBV: @router.post("/test") def test_post(self): return '' @router.get("/test/{uuid}") def test_get(self, uuid: UUID4): return uuid ```
I think the reason for using POST is to let the hyperlink in your email direct users to your front-end page. After clicking, the front-end will retrieve the token from...
There are many ways to verify an email address. I will provide two examples; please feel free to develop your own methods according to your needs. ### version 1 Version...
> 4. in the backend verify method sets is_verifyed to True in db > additional i had to overwrite: > def parse_id(self, value: Any) -> models.ID: > return uuid.UUID(value) >...
I have the same need. I am currently inheriting and overriding methods. It would be great to add these two events. How about on_before_login can be before line 57? https://github.com/fastapi-users/fastapi-users/blob/master/fastapi_users/router/auth.py#L57...
> Thanks for reporting. The video was marked as private so I couldn't view it. A couple of quick questions: > > 1. Which browser do you see this in?...
Today, I tried using older versions to identify which version started having issues. Starting from version 0.71, the problem shown in the video occurs. With versions 0.63 to 0.70, the...