refactor(private-zoom): rename full feature surface

This commit is contained in:
Codex
2026-07-22 18:21:47 +08:00
parent e813333607
commit ed3b34ce1c
102 changed files with 695 additions and 519 deletions
+4 -4
View File
@@ -21,7 +21,7 @@ export const ROUTES = {
root: "/",
splash: "/splash",
chat: "/chat",
privateRoom: "/private-room",
privateZoom: "/private-zoom",
tip: "/tip",
externalEntry: "/external-entry",
auth: "/auth",
@@ -36,7 +36,7 @@ export type StaticRoute = (typeof ROUTES)[keyof typeof ROUTES];
export interface CharacterRoutes {
readonly splash: string;
readonly chat: string;
readonly privateRoom: string;
readonly privateZoom: string;
readonly tip: string;
}
@@ -47,7 +47,7 @@ export function getCharacterRoutes(
return {
splash: `${root}/splash`,
chat: `${root}/chat`,
privateRoom: `${root}/private-room`,
privateZoom: `${root}/private-zoom`,
tip: `${root}/tip`,
};
}
@@ -110,7 +110,7 @@ export const ROUTE_BUILDERS = {
export const ALL_STATIC_ROUTES: readonly StaticRoute[] = [
ROUTES.splash,
ROUTES.chat,
ROUTES.privateRoom,
ROUTES.privateZoom,
ROUTES.tip,
ROUTES.externalEntry,
ROUTES.auth,