Projekt

Obecné

Profil

Stáhnout (509 Bajtů) Statistiky
| Větev: | Tag: | Revize:
1 7e4b4e6a mschwob
import { axiosInstance } from "./api"
2 8040f287 Michal Schwob
import {Toast} from "native-base"
3 7e4b4e6a mschwob
4 5ed9692c Schwobik
export const loginRequest = async (username: string, password: string) => {
5
    return await axiosInstance.post(
6 ddc84a2f Schwobik
        "/login",
7 7e4b4e6a mschwob
        {
8
            username: username,
9
            password: password
10
        }
11 5ed9692c Schwobik
    )
12 0efa284e Fantič
}
13
14
export const isAuthRequest = async () => {
15
    return await axiosInstance.get(
16 06808454 Schwobik
        "/isauth"
17
    )
18
}
19
20
export const logoutRequest = async () => {
21
    return await axiosInstance.get(
22
        "/logout"
23 0efa284e Fantič
    )
24
}
25