Merge Beta with Stable releases #1
27
README.md
27
README.md
@ -9,6 +9,8 @@ Small Telegram bot made on Pyrogram
|
|||||||
* Give one-time links to join group
|
* Give one-time links to join group
|
||||||
* Track down users that were not allowed to join
|
* Track down users that were not allowed to join
|
||||||
* Show applications to other users
|
* Show applications to other users
|
||||||
|
* Manage YouTube sponsorships [WIP]
|
||||||
|
* Send and receive messages to users using bot [WIP]
|
||||||
|
|
||||||
## Installation
|
## Installation
|
||||||
|
|
||||||
@ -32,8 +34,6 @@ You can see config file with all the comments below:
|
|||||||
"owner": 0,
|
"owner": 0,
|
||||||
"bot_id": 0,
|
"bot_id": 0,
|
||||||
"age_allowed": 0,
|
"age_allowed": 0,
|
||||||
"birthdays_notify": true,
|
|
||||||
"birthdays_time": "09:00",
|
|
||||||
"api": "http://example.com",
|
"api": "http://example.com",
|
||||||
"inline_preview_count": 7,
|
"inline_preview_count": 7,
|
||||||
"admin_group": 0,
|
"admin_group": 0,
|
||||||
@ -45,22 +45,40 @@ You can see config file with all the comments below:
|
|||||||
"api_hash": "",
|
"api_hash": "",
|
||||||
"bot_token": ""
|
"bot_token": ""
|
||||||
},
|
},
|
||||||
|
"database": {
|
||||||
|
"user": null,
|
||||||
|
"password": null,
|
||||||
|
"host": "127.0.0.1",
|
||||||
|
"port": 27017,
|
||||||
|
"name": "holochecker"
|
||||||
|
},
|
||||||
"logging": {
|
"logging": {
|
||||||
"size": 512,
|
"size": 512,
|
||||||
"location": "logs"
|
"location": "logs"
|
||||||
},
|
},
|
||||||
|
"scheduler": {
|
||||||
|
"birthdays": {
|
||||||
|
"time": 9,
|
||||||
|
"enabled": true
|
||||||
|
},
|
||||||
|
"sponsorships": {
|
||||||
|
"time": 9,
|
||||||
|
"enabled": true
|
||||||
|
}
|
||||||
|
},
|
||||||
"locations": {
|
"locations": {
|
||||||
"data": "data",
|
|
||||||
"cache": "cache",
|
"cache": "cache",
|
||||||
"locale": "locale"
|
"locale": "locale"
|
||||||
},
|
},
|
||||||
"commands": {
|
"commands": {
|
||||||
"rules": "Check out the rules",
|
"rules": "Check out the rules",
|
||||||
"reapply": "Resubmit the application"
|
"reapply": "Resubmit the application",
|
||||||
|
"sponsorship": "Apply for sponsor role"
|
||||||
},
|
},
|
||||||
"commands_admin": {
|
"commands_admin": {
|
||||||
"reboot": "Restart the bot",
|
"reboot": "Restart the bot",
|
||||||
"message": "Send a message",
|
"message": "Send a message",
|
||||||
|
"label": "Set user's nickname",
|
||||||
"warnings": "Check user's warnings",
|
"warnings": "Check user's warnings",
|
||||||
"application": "Check user's application",
|
"application": "Check user's application",
|
||||||
"applications": "Retrieve all applications as a JSON"
|
"applications": "Retrieve all applications as a JSON"
|
||||||
@ -68,6 +86,7 @@ You can see config file with all the comments below:
|
|||||||
"commands_group_admin": {
|
"commands_group_admin": {
|
||||||
"reboot": "Restart the bot",
|
"reboot": "Restart the bot",
|
||||||
"message": "Send a message",
|
"message": "Send a message",
|
||||||
|
"label": "Set user's nickname",
|
||||||
"warnings": "Check user's warnings",
|
"warnings": "Check user's warnings",
|
||||||
"application": "Check user's application",
|
"application": "Check user's application",
|
||||||
"applications": "Retrieve all applications as a JSON"
|
"applications": "Retrieve all applications as a JSON"
|
||||||
|
Reference in New Issue
Block a user