Commit 5104b191 by Nick N. Sukharev

Сохранение файлов с отчётами на Google Disk отключено, так как просмотр и анализ…

… этих файлов именно на Google Disk более не актуален, у всех разработчиков есть к ним доступ по FTP
1 parent 8d9fb1bf
Showing with 8 additions and 0 deletions
......@@ -219,6 +219,12 @@ module.exports = exports = {
},
send_to_google_disk(file_name, file_mime) {
/*
* Сохранение файлов с отчётами на Google Disk отключено,
* так как просмотр и анализ этих файлов именно на Google
* Disk более не актуален, у всех разработчиков есть к ним
* доступ по FTP
*
const sender = sys.spawn('php', [ file_sender, file_name, file_mime ]);
sender.on("close", (code) => {
......@@ -237,6 +243,7 @@ module.exports = exports = {
sender.stdout.on("data", (data) => {
console.log("send to google disk stdout: \n" + data);
});
*/
},
is_mobile_code(abonent_phone) {
......@@ -359,3 +366,4 @@ module.exports = exports = {
}
};
Markdown is supported
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!