Files
meet/src/frontend/src/features/auth/utils/logoutUrl.ts
T
lebaudantoine 6e20d5385f ♻️(frontend) introduce a logoutUrl function
Wrap the logout URL in a function for consistency with '/authenticate'.
2024-07-17 16:51:24 +02:00

6 lines
101 B
TypeScript

import { apiUrl } from '@/api/apiUrl'
export const logoutUrl = () => {
return apiUrl('/logout')
}