linkkf 로직수정중

This commit is contained in:
2025-12-25 19:42:32 +09:00
parent 695d26767e
commit af9a38a973
128 changed files with 8711 additions and 1484 deletions

View File

@@ -29,6 +29,14 @@
{{ macros.setting_input_text('notify_discord_webhook', '웹훅', value=arg['notify_discord_webhook']) }}
{{ macros.setting_input_text_and_buttons('tmp_text_discord', 'Test', [['tmp_discord_test_btn', '전송']], value='테스트 메시지입니다.', col='9') }}
</div>
{{ macros.m_hr() }}
{{ macros.setting_checkbox('notify_slack_use', '슬랙 사용', value=arg['notify_slack_use']) }}
<div id="notify_slack_use_div" class="collapse">
{{ macros.setting_input_text('notify_slack_webhook', '웹훅', value=arg['notify_slack_webhook']) }}
{{ macros.setting_input_text_and_buttons('tmp_text_slack', 'Test', [['tmp_slack_test_btn', '전송']], value='테스트 메시지입니다.', col='9') }}
</div>
{{ macros.m_tab_content_end() }}
{{ macros.m_tab_content_start('advanced', false) }}
@@ -53,6 +61,7 @@
$(document).ready(function(){
use_collapse("notify_telegram_use");
use_collapse("notify_discord_use");
use_collapse("notify_slack_use");
use_collapse("notify_advaned_use");
});
@@ -64,6 +73,10 @@ $('#notify_discord_use').change(function() {
use_collapse('notify_discord_use');
});
$('#notify_slack_use').change(function() {
use_collapse('notify_slack_use');
});
$('#notify_advaned_use').change(function() {
use_collapse('notify_advaned_use');
});
@@ -80,6 +93,11 @@ $("body").on('click', '#tmp_discord_test_btn', function(e){
globalSendCommand('notify_test', 'discord', $('#notify_discord_webhook').val(), $('#tmp_text_discord').val());
});
$("body").on('click', '#tmp_slack_test_btn', function(e){
e.preventDefault();
globalSendCommand('notify_test', 'slack', $('#notify_slack_webhook').val(), $('#tmp_text_slack').val());
});
$("body").on('click', '#tmp_advanced_test_btn', function(e){
e.preventDefault();
globalSendCommand('notify_test', 'advanced', $('#tmp_message_id').val(), $('#tmp_text_advanced').val());