import { encode } from "modules/base64";
|
|
|
|
export const roomListPath = "/rooms";
|
|
|
|
export function getRoomDetailsPath(roomName: string): string {
|
|
return `${roomListPath}/${encode(roomName)}`;
|
|
}
|