Compare commits
2 Commits
c0f16c69f6
...
484990564f
Author | SHA1 | Date | |
---|---|---|---|
|
484990564f | ||
|
500aaf38f4 |
@ -28,11 +28,23 @@
|
|||||||
},
|
},
|
||||||
"commands": {
|
"commands": {
|
||||||
"rules": "Check out the rules",
|
"rules": "Check out the rules",
|
||||||
"reapply": "Fill the application again"
|
"reapply": "Resubmit the application"
|
||||||
},
|
},
|
||||||
"commands_admin": {
|
"commands_admin": {
|
||||||
"reboot": "Restart the bot",
|
"reboot": "Restart the bot",
|
||||||
|
"message": "Send a message",
|
||||||
|
"warnings": "Check user's warnings",
|
||||||
"application": "Check user's application",
|
"application": "Check user's application",
|
||||||
"applications": "Get all applications as JSON"
|
"applications": "Retrieve all applications as a JSON"
|
||||||
|
},
|
||||||
|
"commands_group_admin": {
|
||||||
|
"reboot": "Restart the bot",
|
||||||
|
"message": "Send a message",
|
||||||
|
"warnings": "Check user's warnings",
|
||||||
|
"application": "Check user's application",
|
||||||
|
"applications": "Retrieve all applications as a JSON"
|
||||||
|
},
|
||||||
|
"commands_group_destination": {
|
||||||
|
"warn": "Warn a user"
|
||||||
}
|
}
|
||||||
}
|
}
|
9
main.py
9
main.py
@ -111,6 +111,13 @@ async def cmd_warn(app, msg):
|
|||||||
# ==============================================================================================================================
|
# ==============================================================================================================================
|
||||||
|
|
||||||
|
|
||||||
|
# Message command ==============================================================================================================
|
||||||
|
@app.on_message(~ filters.scheduled & filters.command(["message"], prefixes=["/"]))
|
||||||
|
async def cmd_message(app, msg):
|
||||||
|
pass
|
||||||
|
# ==============================================================================================================================
|
||||||
|
|
||||||
|
|
||||||
# Warnings command =============================================================================================================
|
# Warnings command =============================================================================================================
|
||||||
@app.on_message(~ filters.scheduled & filters.command(["warnings"], prefixes=["/"]))
|
@app.on_message(~ filters.scheduled & filters.command(["warnings"], prefixes=["/"]))
|
||||||
async def cmd_warnings(app, msg):
|
async def cmd_warnings(app, msg):
|
||||||
@ -368,7 +375,7 @@ async def callback_query_accept(app, clb):
|
|||||||
|
|
||||||
configSet(["link"], link.invite_link, file=fullclb[2])
|
configSet(["link"], link.invite_link, file=fullclb[2])
|
||||||
logWrite(f"User {fullclb[2]} got an invite link {link.invite_link}")
|
logWrite(f"User {fullclb[2]} got an invite link {link.invite_link}")
|
||||||
|
|
||||||
else:
|
else:
|
||||||
await app.send_message(int(fullclb[2]), locale("approved_joined", "message"))
|
await app.send_message(int(fullclb[2]), locale("approved_joined", "message"))
|
||||||
|
|
||||||
|
Reference in New Issue
Block a user