Co-authored-by: Copilot <copilot@github.com>
This commit is contained in:
2026-05-05 10:46:49 +04:00
parent b238282569
commit 138b774073

View File

@@ -93,10 +93,10 @@ export class CreatePage {
/** Auth credentials passed by the host page as URL params. */ /** Auth credentials passed by the host page as URL params. */
private get authKey(): string { private get authKey(): string {
return new URLSearchParams(window.location.search).get('auth-key') ?? ''; return new URLSearchParams(window.location.search).get('authorization-key') ?? '';
} }
private get userId(): string { private get userId(): string {
return new URLSearchParams(window.location.search).get('user-id') ?? ''; return new URLSearchParams(window.location.search).get('userid-value') ?? '';
} }
private get sessionId(): string { private get sessionId(): string {
return new URLSearchParams(window.location.search).get('session') ?? ''; return new URLSearchParams(window.location.search).get('session') ?? '';