Skip to content

Commit c214011

Browse files
author
Леня Яковлев
committed
change urls
1 parent 67dc755 commit c214011

File tree

4 files changed

+149
-76
lines changed

4 files changed

+149
-76
lines changed

.idea/workspace.xml

Lines changed: 145 additions & 72 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

client/src/components/Finances.vue

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -64,7 +64,7 @@
6464
const user = localStorage.getItem('user');
6565
const userObj = JSON.parse(user);
6666
const userToken = userObj.token;
67-
const cubejsApi = cubejs(userToken, {apiUrl: `${process.env.VUE_APP_API_URL}/cubejs-api/v1`});
67+
const cubejsApi = cubejs(userToken, {apiUrl: `http://79.143.30.13/cubejs-api/v1`});
6868
return {
6969
cubejsApi,
7070
cost: null,
@@ -101,7 +101,7 @@
101101
segment: this.segment,
102102
profit: this.actionSelected === 'Profit' ? 1 : 0
103103
};
104-
const response = await axios.post(`${process.env.VUE_APP_API_URL}/payments/add`, payload);
104+
const response = await axios.post(`http://79.143.30.13/payments/add`, payload);
105105
if (response.status === 201) {
106106
this.$root.$emit('show_snackbar', {text: 'Payment successfully added'});
107107
}

client/src/components/pages/Login.vue

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -95,7 +95,7 @@
9595
return false
9696
}
9797
try {
98-
const response = await axios.post(`${process.env.VUE_APP_API_URL}/login/registration`, {
98+
const response = await axios.post(`http://79.143.30.13/login/registration`, {
9999
login: this.login,
100100
password: this.password
101101
});
@@ -117,7 +117,7 @@
117117
return false
118118
}
119119
try {
120-
const response = await axios.post(`${process.env.VUE_APP_API_URL}/login/sign`, {
120+
const response = await axios.post(`http://79.143.30.13/login/sign`, {
121121
login: this.login,
122122
password: this.password
123123
});

dump.rdb

97.4 KB
Binary file not shown.

0 commit comments

Comments
 (0)