Portal decision B: client portal on my.debtrecoveryexperts.com

- DRE_BASE_URL -> https://my.debtrecoveryexperts.com (magic links, team notify)
- CORS allow_origins adds https://my.debtrecoveryexperts.com
- magic-link path /portal/verify -> /verify (client portal is domain root, not a subpath)
This commit is contained in:
root
2026-08-21 18:50:05 -04:00
parent be0750d001
commit 7a5603b495
3 changed files with 5 additions and 5 deletions
+1 -1
View File
@@ -23,7 +23,7 @@ app = FastAPI(title="DRE Customer Portal API", version="1.0.0", docs_url="/docs"
app.add_middleware(
CORSMiddleware,
allow_origins=["https://portal.debtrecoveryexperts.com", "http://127.0.0.1:8093"],
allow_origins=["https://portal.debtrecoveryexperts.com", "https://my.debtrecoveryexperts.com", "http://127.0.0.1:8093"],
allow_methods=["GET", "POST", "PATCH"],
allow_headers=["*"],
)