This commit is contained in:
Francesco Esposito 2019-01-16 15:55:26 +01:00
parent 4d68898820
commit 10046b6a67
3 changed files with 7 additions and 7 deletions

View File

@ -49,4 +49,4 @@ In order to use this bot is required that the code is hosted on a linux system c
GPLv3
---
Made with ❤️ by Francesco Esposito ([@f3sposito](https://github.com/f3sposito))
Made with ❤️ by Francesco Esposito ([@ovfl0w](https://github.com/ovfl0w))

View File

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

View File

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