mirror of
https://github.com/Infisical/infisical.git
synced 2026-01-09 15:38:03 -05:00
16 lines
441 B
TypeScript
16 lines
441 B
TypeScript
import SecurityClient from '@app/components/utilities/SecurityClient';
|
|
|
|
/**
|
|
* This function is used to check if the user is authenticated.
|
|
* To do that, we get their tokens from cookies, and verify if they are good.
|
|
*/
|
|
const checkAuth = async () =>
|
|
SecurityClient.fetchCall('/api/v1/auth/checkAuth', {
|
|
method: 'POST',
|
|
headers: {
|
|
'Content-Type': 'application/json'
|
|
}
|
|
}).then((res) => res);
|
|
|
|
export default checkAuth;
|