Edit username

This commit is contained in:
Francesco Esposito 2020-03-01 23:35:34 +01:00
parent da0ec71ba5
commit 7137d41ac4
4 changed files with 7 additions and 7 deletions

View File

@ -59,4 +59,4 @@ In order to use this bot is required that the code is hosted on a GNU/Linux syst
GPLv3 GPLv3
--- ---
Made with ❤️ by Francesco Esposito ([@frsposito](https://github.com/frsposito)) Made with ❤️ by Francesco Esposito ([@franjsco](https://github.com/franjsco))

View File

@ -10,14 +10,14 @@
}, },
"repository": { "repository": {
"type": "git", "type": "git",
"url": "git+https://github.com/frsposito/lscanbot.git" "url": "git+https://github.com/franjsco/lscanbot.git"
}, },
"author": "frsposito", "author": "franjsco",
"license": "GPL-3.0", "license": "GPL-3.0",
"bugs": { "bugs": {
"url": "https://github.com/frsposito/lscanbot/issues" "url": "https://github.com/franjsco/lscanbot/issues"
}, },
"homepage": "https://github.com/frsposito/lscanbot#readme", "homepage": "https://github.com/franjsco/lscanbot#readme",
"dependencies": { "dependencies": {
"arpscan": "^0.6.0", "arpscan": "^0.6.0",
"bunyan": "^1.8.12", "bunyan": "^1.8.12",

Binary file not shown.

Before

Width:  |  Height:  |  Size: 527 KiB

After

Width:  |  Height:  |  Size: 527 KiB

View File

@ -7,13 +7,13 @@ function isAuthorizedUser(userId) {
function templateStart() { function templateStart() {
const msg = `* Welcome to ${appConfig.app.name} 📱📡*\n const msg = `* Welcome to ${appConfig.app.name} 📱📡*\n
A bot to find devices on your network. \n A bot to find devices on your network. \n
Made with by @frsposito `; Made with by @franjsco `;
return msg; return msg;
} }
function templateUnauthorizedUser() { function templateUnauthorizedUser() {
const msg = `Unauthorized user. 🤖 \n const msg = `Unauthorized user. 🤖 \n
Clone the repository https://github.com/frsposito/lscanbot Clone the repository https://github.com/franjsco/lscanbot
and run the bot on your local network. 😎`; and run the bot on your local network. 😎`;
return msg; return msg;
} }