feat(auth): add facebook identity psid login

This commit is contained in:
2026-07-10 17:07:22 +08:00
parent 2e60bf64e6
commit 53801490e5
28 changed files with 637 additions and 37 deletions
+2 -8
View File
@@ -83,16 +83,10 @@ function resolveTargetAlias(
const target = value.trim().toLowerCase();
if (target === "chat") return ROUTES.chat;
if (target === "tip" || target === "tips" || target === "coffee") {
if (target === "tip" || target === "tips") {
return ROUTES.tip;
}
if (
target === "private-room" ||
target === "private_room" ||
target === "privateroom" ||
target === "private" ||
target === "room"
) {
if (target === "private-room") {
return ROUTES.privateRoom;
}