mirror of
https://github.com/freqtrade/frequi.git
synced 2024-11-11 02:33:51 +00:00
show message after reloading configuration
This commit is contained in:
parent
1c58ee86c1
commit
1fd9291cdb
|
@ -171,8 +171,16 @@ export default {
|
|||
stopBuy() {
|
||||
return api.post('/stopbuy', {}).catch(console.error);
|
||||
},
|
||||
reloadConfig() {
|
||||
return api.post('/reload_config', {}).catch(console.error);
|
||||
async reloadConfig({ dispatch }) {
|
||||
try {
|
||||
const res = await api.post('/reload_config', {});
|
||||
console.log(res.data);
|
||||
dispatch('alerts/addAlert', { message: res.data.status }, { root: true });
|
||||
return Promise.resolve(res);
|
||||
} catch (error) {
|
||||
console.error(error.resposne);
|
||||
return Promise.reject(error);
|
||||
}
|
||||
},
|
||||
async deleteTrade({ dispatch }, tradeid: string) {
|
||||
try {
|
||||
|
|
Loading…
Reference in New Issue
Block a user