| 123456789101112131415 |
- const base = "http://localhost:26081/v1";
-
- export default {
- authentications: {
- login: base + "/users/authenticate",
- googleLogin: base + "/users/authenticateGoogle",
- refreshToken: base + "/users/refresh",
- logout: base + "/users/logout?userId={userId}",
- forgetPassword: base + "/users/ForgotPassword",
- resetPassword: base + "/users/RessetPassword",
- },
- users:{
- allUsers:'http://localhost:26081/v1/users',
- }
- };
|