Files
Automata/packages/editor-ui/src/api/events.ts
कारतोफ्फेलस्क्रिप्ट™ 6de4dfff87 feat(editor): Setup Sentry integration (#10945)
2024-09-24 17:49:22 +02:00

7 lines
267 B
TypeScript

import type { IRestApiContext } from '@/Interface';
import { makeRestApiRequest } from '@/utils/apiUtils';
export async function sessionStarted(context: IRestApiContext): Promise<void> {
return await makeRestApiRequest(context, 'GET', '/events/session-started');
}