diff --git a/frontend/src/config/index.js b/frontend/src/config/index.js index d783842b6..2d5f6a6c7 100644 --- a/frontend/src/config/index.js +++ b/frontend/src/config/index.js @@ -13,6 +13,8 @@ const server = { LOGIN_API_URL: process.env.LOGIN_API_URL || 'http://localhost/login_api/', COMMUNITY_API_STATE_BALANCE_URL: process.env.COMMUNITY_API_STATE_BALANCE_URL || 'http://localhost/state-balances/', COMMUNITY_API_TRANSACTION_CREATION_URL: process.env.COMMUNITY_API_TRANSACTION_CREATION_URL || 'http://localhost/transaction-creations/', + // TODO is this the right API call? what does it do? + COMMUNITY_API_TRANSACTION_SEND_COINS: process.env.COMMUNITY_API_TRANSACTION_SEND_COINS || 'http://localhost/transaction-send-coins/', } const CONFIG = { diff --git a/frontend/src/store/store.js b/frontend/src/store/store.js index cc3714fd5..486b8a617 100644 --- a/frontend/src/store/store.js +++ b/frontend/src/store/store.js @@ -98,9 +98,6 @@ export const store = new Vuex.Store({ //dispatch('logout') } - //}, (error) => { - //console.log(error); - //}); }, passwordReset: async (data) => { console.log("<<<<<<<<<<< PASSWORT RESET TODO >>>>>>>>>>>", data.email) @@ -142,7 +139,7 @@ export const store = new Vuex.Store({ //console.log('action: ajaxCreate') state.ajaxCreateData.amount = (state.ajaxCreateData.amount)*10000 const result = await communityAPI.create($cookies.get("gdd_session_id", email, amount, memo)) - // console.log(result) + console.log(result) }, ajaxListTransactions: async ({commit, dispatch, state}) => { // console.log('action: ajaxListTransactions', state.session_id) diff --git a/frontend/src/views/KontoOverview/GddTable.vue b/frontend/src/views/KontoOverview/GddTable.vue index 1ddcb3fb3..1629bafe3 100644 --- a/frontend/src/views/KontoOverview/GddTable.vue +++ b/frontend/src/views/KontoOverview/GddTable.vue @@ -40,6 +40,7 @@