fix wechat bug

This commit is contained in:
jxxghp 2024-03-07 18:01:50 +08:00
parent 0de952f090
commit 26d6201b30

View File

@ -36,14 +36,6 @@ async def user_message(background_tasks: BackgroundTasks, request: Request):
return schemas.Response(success=True) return schemas.Response(success=True)
@router.get("/", summary="VoceChat验证")
def vocechat_verify() -> Any:
"""
VoceChat验证响应
"""
return {"status": "OK"}
@router.get("/", summary="微信验证") @router.get("/", summary="微信验证")
def wechat_verify(echostr: str, msg_signature: str, def wechat_verify(echostr: str, msg_signature: str,
timestamp: Union[str, int], nonce: str) -> Any: timestamp: Union[str, int], nonce: str) -> Any:
@ -68,6 +60,14 @@ def wechat_verify(echostr: str, msg_signature: str,
return PlainTextResponse(sEchoStr) return PlainTextResponse(sEchoStr)
@router.get("/", summary="VoceChat验证")
def vocechat_verify() -> Any:
"""
VoceChat验证响应
"""
return {"status": "OK"}
@router.get("/switchs", summary="查询通知消息渠道开关", response_model=List[NotificationSwitch]) @router.get("/switchs", summary="查询通知消息渠道开关", response_model=List[NotificationSwitch])
def read_switchs(_: schemas.TokenPayload = Depends(verify_token)) -> Any: def read_switchs(_: schemas.TokenPayload = Depends(verify_token)) -> Any:
""" """