| @@ -1,4 +1,4 @@ | |||
| const base = "http://localhost:26081/v1"; | |||
| const base = "http://localhost:5116/v1"; | |||
| export default { | |||
| authentications: { | |||
| @@ -10,10 +10,10 @@ export default { | |||
| 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}', | |||
| invite:'http://localhost:26081/v1/users/invite', | |||
| allUsers: base + '/users', | |||
| user: base + '/users/{id}', | |||
| toggleEnabled: base + '/users/toggleEnable/{id}', | |||
| invite: base + '/users/invite', | |||
| }, | |||
| candidates: { | |||
| filteredCandidates:base + "/applicants", | |||