mirror of
https://github.com/maelgangloff/domain-watchdog.git
synced 2025-12-17 17:55:42 +00:00
19 lines
426 B
TypeScript
19 lines
426 B
TypeScript
import {request, User} from "./index";
|
|
|
|
|
|
export async function login(email: string, password: string): Promise<boolean> {
|
|
const response = await request({
|
|
method: 'POST',
|
|
url: 'login',
|
|
data: {email, password}
|
|
})
|
|
return response.status === 200
|
|
}
|
|
|
|
export async function getUser(): Promise<User> {
|
|
const response = await request<User>({
|
|
url: 'me'
|
|
})
|
|
return response.data
|
|
}
|