This repository has no description
0

Configure Feed

Select the types of activity you want to include in your feed.

semble / src / webapp / services / server.apiClient.ts
324 B 7 lines
1import { createServerApiClient } from '@/api-client/ApiClient'; 2import { ServerCookieAuthService } from './auth/CookieAuthService.server'; 3 4export const createServerSembleClient = async () => { 5 const { accessToken } = await ServerCookieAuthService.getTokens(); 6 return createServerApiClient(accessToken || undefined); 7};