Merge branch 'dev' into feat/contributors/contributions

This commit is contained in:
Alexandre Teles
2022-12-26 17:44:22 -03:00
committed by GitHub
22 changed files with 662 additions and 496 deletions

View File

@ -107,3 +107,12 @@ class RevokedTokenResponse(BaseModel):
"""
revoked: bool
class SocialsResponseModel(BaseModel):
"""Implements the JSON response model for the /socials endpoint.
Args:
BaseModel (pydantic.BaseModel): BaseModel from pydantic
"""
__root__: dict[ str, str ]