source: client_app/src/repository/login_repo.js@ 3f5bf9e

Last change on this file since 3f5bf9e was 3f5bf9e, checked in by Vzdra <vladko.zdravkovski@…>, 3 years ago

added test login

  • Property mode set to 100644
File size: 283 bytes
Line 
1import axios from '../custom_axios/axios';
2
3const UserLogin = {
4 login: (username, password, type) => {
5 return axios.post("/login", {
6 "account": username,
7 "password": password,
8 "type": type
9 });
10 }
11}
12
13export default UserLogin;
Note: See TracBrowser for help on using the repository browser.