| 12345678910111213141516171819202122232425262728293031323334 |
- const base = "http://localhost:26081/v1";
-
- export default {
- authentications: {
- login: base + "/authentications/authenticate",
- googleLogin: base + "/authentications/authenticateGoogle",
- refreshToken: base + "/authentications/refresh",
- logout: base + "/authentications/logout?userId={userId}",
- forgetPassword: base + "/authentications/ForgotPassword",
- resetPassword: base + "/authentications/RessetPassword",
- },
- users:{
- allUsers:'http://localhost:26081/v1/users',
- user:'http://localhost:26081/v1/users/{id}',
- toggleEnabled:'http://localhost:26081/v1/users/toggleEnable/{id}',
- },
- candidates: {
- allCandidates: base + "/applicants",
- },
- ads: {
- allAds: base + "/ads",
- allArchiveAds: base + "/ads/archive",
- adDetails: base + "/ads/details",
- },
- <<<<<<< HEAD
- candidates:{
- allCandidates:base + "/applicants",
- },
- comments:{
- addComment:base + '/comments'
- }
- =======
- >>>>>>> FE_dev
- };
|