Code clean up. Bug fixes for person, user, contact, and address methods
This commit is contained in:
@@ -775,7 +775,7 @@ async def lookup_username(
|
||||
# @router.get('/user/email_auth_key_url', response_model=Resp_Body_Base)
|
||||
@router.get('/user/{user_id}/email_auth_key_url', response_model=Resp_Body_Base)
|
||||
async def email_auth_key_url(
|
||||
user_id: Optional[str] = Query(None, min_length=11, max_length=22),
|
||||
user_id: str = Query(..., min_length=11, max_length=22),
|
||||
root_url: Optional[str] = Query(None, min_length=10, max_length=100), # Absolute min = 7
|
||||
return_obj: bool = False,
|
||||
commons: Common_Route_Params = Depends(common_route_params),
|
||||
|
||||
Reference in New Issue
Block a user