Merge branch 'mhkim-node' of https://g.wace.me/jskim/vexplor_dev into jskim-node

This commit is contained in:
kjs
2026-04-26 18:33:52 +09:00
18 changed files with 3385 additions and 15 deletions

View File

@@ -103,7 +103,10 @@ export class AuthController {
} else if (popResult.childMenus.length === 1) {
popLandingPath = popResult.childMenus[0].menu_url;
} else if (popResult.childMenus.length > 1) {
popLandingPath = "/pop";
const userCompanyCode = loginResult.userInfo.companyCode;
if (userCompanyCode && userCompanyCode !== "*") {
popLandingPath = `/${userCompanyCode}/pop/main`;
}
}
logger.debug(`POP 랜딩 경로: ${popLandingPath}`);