feat: クライアントでログインするアカウントidを指定するクエリ(loginId=:userId) (#7929)

* feat: ログインするアカウントのIDをクエリ文字列で指定する機能

* await?

* rename
This commit is contained in:
tamaina 2021-10-31 16:01:50 +09:00 committed by GitHub
parent fc65190ef7
commit 303c5abfb4
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 32 additions and 0 deletions

View file

@ -0,0 +1,11 @@
export function getUrlWithLoginId(url: string, loginId: string) {
const u = new URL(url, origin);
u.searchParams.append('loginId', loginId);
return u.toString();
}
export function getUrlWithoutLoginId(url: string) {
const u = new URL(url);
u.searchParams.delete('loginId');
return u.toString();
}