| const base = "http://localhost:26081/v1"; | |||||
| const base = "http://localhost:5116/v1"; | |||||
| export default { | export default { | ||||
| authentications: { | authentications: { | ||||
| resetPassword: base + "/authentications/RessetPassword", | resetPassword: base + "/authentications/RessetPassword", | ||||
| }, | }, | ||||
| users:{ | 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: { | candidates: { | ||||
| filteredCandidates:base + "/applicants", | filteredCandidates:base + "/applicants", |