aswi2023one-team-to-rule-them-all-gitlab/src/api/authservice.ts @ b7014ba2
1 | 7e4b4e6a | mschwob | import { axiosInstance } from "./api" |
---|---|---|---|
2 | |||
3 | 5ed9692c | Schwobik | export const loginRequest = async (username: string, password: string) => { |
4 | return await axiosInstance.post( |
||
5 | 7e4b4e6a | mschwob | "/api/login", |
6 | {
|
||
7 | username: username, |
||
8 | password: password |
||
9 | }
|
||
10 | 5ed9692c | Schwobik | )
|
11 | 7e4b4e6a | mschwob | }
|