Add shortcut commands for alerts, backup, docker, openwrt

This commit is contained in:
2026-02-08 23:01:33 +03:00
parent 77571da4d9
commit 2ee9756d12
4 changed files with 69 additions and 19 deletions

View File

@@ -328,6 +328,12 @@ async def br(msg: Message):
await cmd_backup_now(msg)
@dp.message(F.text == "/backup_run")
async def br_cmd(msg: Message):
if is_admin_msg(msg):
await cmd_backup_now(msg)
@dp.message(F.text == "🧪 Restic check")
async def rc(msg: Message):
if not is_admin_msg(msg):