- Create modal to register when limit is past - Create modal to share the link - Use UrlManager to check if limit room is active Signed-off-by: Gregoire Parant <g.parant@thecodingmachine.com>
9 lines
257 B
TypeScript
9 lines
257 B
TypeScript
import { writable } from "svelte/store";
|
|
|
|
export const userMovingStore = writable(false);
|
|
|
|
export const requestVisitCardsStore = writable<string | null>(null);
|
|
|
|
export const userIsAdminStore = writable(false);
|
|
|
|
export const limitMapStore = writable(false);
|