feat(accounts): add account tab and modal creation

This commit is contained in:
2021-11-05 00:53:09 +01:00
parent a169862311
commit a929561c63
4 changed files with 119 additions and 21 deletions

View File

@@ -11,7 +11,7 @@ export const getAccounts = (oauthToken, userId) => {
const headers = {
"Authorization": "Bearer "+oauthToken
};
return Vue.axios.get("http://localhost:8081/users/"+userId+"/accountsgc", {headers}).then(response => {console.log(response);return response.data})
return Vue.axios.get("http://localhost:8081/users/"+userId+"/accounts", {headers}).then(response => {console.log(response);return response.data})
}
export const getSharedAccounts = (oauthToken, userId) => {