feat: 更新验证码请求模型,添加 Google reCAPTCHA 和 Cloudflare Turnstile 验证功能
refactor: 修改用户状态字段类型,优化用户模型 fix: 修复启动服务的错误提示信息 refactor: 统一认证依赖,替换为 AuthRequired docs: 添加用户会话刷新接口
This commit is contained in:
5
service/captcha/__init__.py
Normal file
5
service/captcha/__init__.py
Normal file
@@ -0,0 +1,5 @@
|
||||
from pydantic import BaseModel
|
||||
|
||||
class CaptchaRequestBase(BaseModel):
|
||||
token: str
|
||||
secret: str
|
||||
Reference in New Issue
Block a user