1、前台/team-management加入申请的通过失败按钮增加一下图标,区分一下

2、前台/join-team页面上边要增加网站名称,要不然用户看不到是什么网站
3、后台/users的后台用户我新增一个,然后设置菜单权限,实际登陆没有生效
This commit is contained in:
2026-07-07 16:20:08 +08:00
parent b92dd75fd4
commit a0def59ece
9 changed files with 76 additions and 26 deletions
+1 -1
View File
@@ -170,7 +170,7 @@ async def create_user(
email=req.email,
phone=req.phone,
credits=req.credits,
is_admin=(req.user_type == "admin"),
is_admin=req.is_admin if req.user_type == "admin" else False,
user_type=req.user_type,
frontend_user_kind=req.frontend_user_kind if req.user_type == "frontend" else FrontendUserKind.EXTERNAL.value,
allowed_menus=req.allowed_menus,