mirror of
https://github.com/toeverything/AFFiNE.git
synced 2026-02-13 04:48:53 +00:00
9 lines
248 B
TypeScript
9 lines
248 B
TypeScript
const BASE_URL = new URL(import.meta.env.PLAYGROUND_SERVER);
|
|
export async function generateRoomId(): Promise<string> {
|
|
return fetch(new URL('/room/', BASE_URL), {
|
|
method: 'post',
|
|
})
|
|
.then(res => res.json())
|
|
.then(({ id }) => id);
|
|
}
|