Browse Source

Changed port

pull/69/head
Safet Purkovic 3 years ago
parent
commit
3574d1c75a
1 changed files with 5 additions and 5 deletions
  1. 5
    5
      src/request/apiEndpoints.js

+ 5
- 5
src/request/apiEndpoints.js View File

@@ -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",

Loading…
Cancel
Save