2023-07-27 05:31:52 +00:00
|
|
|
/*
|
|
|
|
* SPDX-FileCopyrightText: syuilo and other misskey contributors
|
|
|
|
* SPDX-License-Identifier: AGPL-3.0-only
|
|
|
|
*/
|
|
|
|
|
2021-10-31 07:01:50 +00:00
|
|
|
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();
|
|
|
|
}
|