├── Heroo.png ├── README.md ├── app.js ├── controllers ├── assistanceController.js ├── authenticationController.js ├── contentController.js ├── identityVerificationController.js ├── paymentController.js ├── statisticsController.js └── subscriptionController.js ├── models ├── content.js ├── identityDocument.js ├── message.js ├── payment.js ├── statistic.js ├── subscription.js └── user.js ├── routes ├── contents.js ├── identityVerification.js ├── index.js ├── messages.js ├── payments.js ├── statistics.js ├── subscriptions.js └── users.js ├── utils ├── databaseConnection.js └── telegramBotIntegration.js └── views ├── contents.ejs ├── dashboard.ejs ├── login.ejs ├── messages.ejs ├── payments.ejs ├── statistics.ejs ├── subscriptions.ejs └── verifyIdentity.ejs /Heroo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zeeshanahmad4/TeleAdminPanel-Advanced-Telegram-Bot-Administration/HEAD/Heroo.png -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zeeshanahmad4/TeleAdminPanel-Advanced-Telegram-Bot-Administration/HEAD/README.md -------------------------------------------------------------------------------- /app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zeeshanahmad4/TeleAdminPanel-Advanced-Telegram-Bot-Administration/HEAD/app.js -------------------------------------------------------------------------------- /controllers/assistanceController.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zeeshanahmad4/TeleAdminPanel-Advanced-Telegram-Bot-Administration/HEAD/controllers/assistanceController.js -------------------------------------------------------------------------------- /controllers/authenticationController.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zeeshanahmad4/TeleAdminPanel-Advanced-Telegram-Bot-Administration/HEAD/controllers/authenticationController.js -------------------------------------------------------------------------------- /controllers/contentController.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zeeshanahmad4/TeleAdminPanel-Advanced-Telegram-Bot-Administration/HEAD/controllers/contentController.js -------------------------------------------------------------------------------- /controllers/identityVerificationController.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zeeshanahmad4/TeleAdminPanel-Advanced-Telegram-Bot-Administration/HEAD/controllers/identityVerificationController.js -------------------------------------------------------------------------------- /controllers/paymentController.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zeeshanahmad4/TeleAdminPanel-Advanced-Telegram-Bot-Administration/HEAD/controllers/paymentController.js -------------------------------------------------------------------------------- /controllers/statisticsController.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zeeshanahmad4/TeleAdminPanel-Advanced-Telegram-Bot-Administration/HEAD/controllers/statisticsController.js -------------------------------------------------------------------------------- /controllers/subscriptionController.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zeeshanahmad4/TeleAdminPanel-Advanced-Telegram-Bot-Administration/HEAD/controllers/subscriptionController.js -------------------------------------------------------------------------------- /models/content.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zeeshanahmad4/TeleAdminPanel-Advanced-Telegram-Bot-Administration/HEAD/models/content.js -------------------------------------------------------------------------------- /models/identityDocument.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zeeshanahmad4/TeleAdminPanel-Advanced-Telegram-Bot-Administration/HEAD/models/identityDocument.js -------------------------------------------------------------------------------- /models/message.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zeeshanahmad4/TeleAdminPanel-Advanced-Telegram-Bot-Administration/HEAD/models/message.js -------------------------------------------------------------------------------- /models/payment.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zeeshanahmad4/TeleAdminPanel-Advanced-Telegram-Bot-Administration/HEAD/models/payment.js -------------------------------------------------------------------------------- /models/statistic.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zeeshanahmad4/TeleAdminPanel-Advanced-Telegram-Bot-Administration/HEAD/models/statistic.js -------------------------------------------------------------------------------- /models/subscription.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zeeshanahmad4/TeleAdminPanel-Advanced-Telegram-Bot-Administration/HEAD/models/subscription.js -------------------------------------------------------------------------------- /models/user.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zeeshanahmad4/TeleAdminPanel-Advanced-Telegram-Bot-Administration/HEAD/models/user.js -------------------------------------------------------------------------------- /routes/contents.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zeeshanahmad4/TeleAdminPanel-Advanced-Telegram-Bot-Administration/HEAD/routes/contents.js -------------------------------------------------------------------------------- /routes/identityVerification.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zeeshanahmad4/TeleAdminPanel-Advanced-Telegram-Bot-Administration/HEAD/routes/identityVerification.js -------------------------------------------------------------------------------- /routes/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zeeshanahmad4/TeleAdminPanel-Advanced-Telegram-Bot-Administration/HEAD/routes/index.js -------------------------------------------------------------------------------- /routes/messages.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zeeshanahmad4/TeleAdminPanel-Advanced-Telegram-Bot-Administration/HEAD/routes/messages.js -------------------------------------------------------------------------------- /routes/payments.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zeeshanahmad4/TeleAdminPanel-Advanced-Telegram-Bot-Administration/HEAD/routes/payments.js -------------------------------------------------------------------------------- /routes/statistics.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zeeshanahmad4/TeleAdminPanel-Advanced-Telegram-Bot-Administration/HEAD/routes/statistics.js -------------------------------------------------------------------------------- /routes/subscriptions.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zeeshanahmad4/TeleAdminPanel-Advanced-Telegram-Bot-Administration/HEAD/routes/subscriptions.js -------------------------------------------------------------------------------- /routes/users.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zeeshanahmad4/TeleAdminPanel-Advanced-Telegram-Bot-Administration/HEAD/routes/users.js -------------------------------------------------------------------------------- /utils/databaseConnection.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zeeshanahmad4/TeleAdminPanel-Advanced-Telegram-Bot-Administration/HEAD/utils/databaseConnection.js -------------------------------------------------------------------------------- /utils/telegramBotIntegration.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zeeshanahmad4/TeleAdminPanel-Advanced-Telegram-Bot-Administration/HEAD/utils/telegramBotIntegration.js -------------------------------------------------------------------------------- /views/contents.ejs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zeeshanahmad4/TeleAdminPanel-Advanced-Telegram-Bot-Administration/HEAD/views/contents.ejs -------------------------------------------------------------------------------- /views/dashboard.ejs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zeeshanahmad4/TeleAdminPanel-Advanced-Telegram-Bot-Administration/HEAD/views/dashboard.ejs -------------------------------------------------------------------------------- /views/login.ejs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zeeshanahmad4/TeleAdminPanel-Advanced-Telegram-Bot-Administration/HEAD/views/login.ejs -------------------------------------------------------------------------------- /views/messages.ejs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zeeshanahmad4/TeleAdminPanel-Advanced-Telegram-Bot-Administration/HEAD/views/messages.ejs -------------------------------------------------------------------------------- /views/payments.ejs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zeeshanahmad4/TeleAdminPanel-Advanced-Telegram-Bot-Administration/HEAD/views/payments.ejs -------------------------------------------------------------------------------- /views/statistics.ejs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zeeshanahmad4/TeleAdminPanel-Advanced-Telegram-Bot-Administration/HEAD/views/statistics.ejs -------------------------------------------------------------------------------- /views/subscriptions.ejs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zeeshanahmad4/TeleAdminPanel-Advanced-Telegram-Bot-Administration/HEAD/views/subscriptions.ejs -------------------------------------------------------------------------------- /views/verifyIdentity.ejs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zeeshanahmad4/TeleAdminPanel-Advanced-Telegram-Bot-Administration/HEAD/views/verifyIdentity.ejs --------------------------------------------------------------------------------