source: client_app/src/repository/login_repo.js@ 351c43f

Last change on this file since 351c43f was 17abe5e, checked in by i-ina <76742075+i-ina@…>, 3 years ago

react components for details and bugfix

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