등록된 모든 활성(Active) 봇에게 알림이 동시에 전송됩니다.
알림 종류: 로그인, 회원가입, 로그아웃, 서버 작업 등
{% if bots %}
{% for bot in bots %}
{{ bot.name }}
ID: {{ bot.id }}
{% if bot.is_active %}
Active
{% else %}
Inactive
{% endif %}
{{ bot.description or "설명이 없습니다." }}
Token:{{ bot.token[:10] }}...
Chat ID:{{ bot.chat_id }}
{% set types = (bot.notification_types or "").split(",") %}
{% if 'auth' in types %}
인증
{% endif %}
{% if 'activity' in types %}
활동
{% endif %}
{% if 'system' in types %}
시스템
{% endif %}