Меняем текст приветствия в зависимости от useExternalBookConverter

This commit is contained in:
Book Pauk
2019-02-27 22:09:00 +07:00
parent 7d77d478c1
commit c4f6c9383c
2 changed files with 18 additions and 6 deletions

View File

@@ -6,7 +6,9 @@ const api = axios.create({
class Misc {
async loadConfig() {
const response = await api.post('/config', {params: ['name', 'version', 'mode', 'maxUploadFileSize', 'branch']});
const response = await api.post('/config', {params: [
'name', 'version', 'mode', 'maxUploadFileSize', 'useExternalBookConverter', 'branch',
]});
return response.data;
}
}