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

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

Loading…
Cancel
Save