mirror of https://github.com/tiangolo/fastapi.git
Compare commits
2 Commits
25c692d77d
...
e00d29e784
| Author | SHA1 | Date |
|---|---|---|
|
|
e00d29e784 | |
|
|
ce1fb1a23b |
|
|
@ -7,6 +7,10 @@ hide:
|
||||||
|
|
||||||
## Latest Changes
|
## Latest Changes
|
||||||
|
|
||||||
|
### Docs
|
||||||
|
|
||||||
|
* ✏️ Fix typo in `security/http.py`. PR [#11455](https://github.com/tiangolo/fastapi/pull/11455) by [@omarmoo5](https://github.com/omarmoo5).
|
||||||
|
|
||||||
### Internal
|
### Internal
|
||||||
|
|
||||||
* ⬆️ Upgrade MkDocs Material and re-enable cards. PR [#11466](https://github.com/tiangolo/fastapi/pull/11466) by [@tiangolo](https://github.com/tiangolo).
|
* ⬆️ Upgrade MkDocs Material and re-enable cards. PR [#11466](https://github.com/tiangolo/fastapi/pull/11466) by [@tiangolo](https://github.com/tiangolo).
|
||||||
|
|
|
||||||
|
|
@ -15,7 +15,7 @@ from typing_extensions import Annotated, Doc
|
||||||
|
|
||||||
class HTTPBasicCredentials(BaseModel):
|
class HTTPBasicCredentials(BaseModel):
|
||||||
"""
|
"""
|
||||||
The HTTP Basic credendials given as the result of using `HTTPBasic` in a
|
The HTTP Basic credentials given as the result of using `HTTPBasic` in a
|
||||||
dependency.
|
dependency.
|
||||||
|
|
||||||
Read more about it in the
|
Read more about it in the
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue