2023-09-06 12:31:38 +00:00
< div >
2024-03-22 12:25:43 +00:00
< x - notification . navbar />
< form wire : submit = 'submit' class = " flex flex-col gap-4 " >
2023-09-06 12:31:38 +00:00
< div class = " flex items-center gap-2 " >
< h2 > Telegram </ h2 >
< x - forms . button type = " submit " >
Save
</ x - forms . button >
@ if ( $team -> telegram_enabled )
2024-03-24 15:00:25 +00:00
< x - forms . button class = " dark:text-white normal-case btn btn-xs no-animation btn-primary "
2023-09-06 12:31:38 +00:00
wire : click = " sendTestNotification " >
Send Test Notifications
</ x - forms . button >
@ endif
</ div >
2024-03-22 12:25:43 +00:00
< div class = " w-32 " >
2024-01-17 11:23:58 +00:00
< x - forms . checkbox instantSave id = " team.telegram_enabled " label = " Enabled " />
2023-09-06 12:31:38 +00:00
</ div >
< div class = " flex gap-2 " >
2023-09-08 12:15:28 +00:00
< x - forms . input type = " password "
2024-03-24 15:00:25 +00:00
helper = " Get it from the <a class='inline-block dark:text-white underline' href='https://t.me/botfather' target='_blank'>BotFather Bot</a> on Telegram. "
2023-09-08 12:15:28 +00:00
required id = " team.telegram_token " label = " Token " />
2023-12-07 18:06:32 +00:00
< x - forms . input helper = " Recommended to add your bot to a group chat and add its Chat ID here. " required
2023-09-06 12:31:38 +00:00
id = " team.telegram_chat_id " label = " Chat ID " />
</ div >
2023-12-07 18:06:32 +00:00
@ if ( data_get ( $team , 'telegram_enabled' ))
< h2 class = " mt-4 " > Subscribe to events </ h2 >
< div class = " w-96 " >
@ if ( isDev ())
< div class = " w-64 " >
< x - forms . checkbox instantSave = " saveModel " id = " team.telegram_notifications_test "
label = " Test " />
< x - forms . input
helper = " If you are using Group chat with Topics, you can specify the topics ID. If empty, General topic will be used. "
id = " team.telegram_notifications_test_message_thread_id " label = " Custom Topic ID " />
</ div >
@ endif
2023-10-05 12:44:17 +00:00
< div class = " w-64 " >
2023-12-07 18:06:32 +00:00
< x - forms . checkbox instantSave = " saveModel " id = " team.telegram_notifications_status_changes "
label = " Container Status Changes " />
2023-09-08 12:15:28 +00:00
< x - forms . input
helper = " If you are using Group chat with Topics, you can specify the topics ID. If empty, General topic will be used. "
2023-12-07 18:06:32 +00:00
id = " team.telegram_notifications_status_changes_message_thread_id " label = " Custom Topic ID " />
</ div >
< div class = " w-64 " >
< x - forms . checkbox instantSave = " saveModel " id = " team.telegram_notifications_deployments "
label = " Application Deployments " />
< x - forms . input
helper = " If you are using Group chat with Topics, you can specify the topics ID. If empty, General topic will be used. "
id = " team.telegram_notifications_deployments_message_thread_id " label = " Custom Topic ID " />
</ div >
< div class = " w-64 " >
< x - forms . checkbox instantSave = " saveModel " id = " team.telegram_notifications_database_backups "
label = " Backup Status " />
< x - forms . input
helper = " If you are using Group chat with Topics, you can specify the topics ID. If empty, General topic will be used. "
id = " team.telegram_notifications_database_backups_message_thread_id " label = " Custom Topic ID " />
2023-09-08 12:15:28 +00:00
</ div >
</ div >
@ endif
</ form >
2023-09-06 12:31:38 +00:00
</ div >