mirror of
https://github.com/suitenumerique/meet.git
synced 2026-08-12 03:37:03 +00:00
6e20d5385f
Wrap the logout URL in a function for consistency with '/authenticate'.
6 lines
101 B
TypeScript
6 lines
101 B
TypeScript
import { apiUrl } from '@/api/apiUrl'
|
|
|
|
export const logoutUrl = () => {
|
|
return apiUrl('/logout')
|
|
}
|