Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/MHSanaei/3x-ui.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorShishkevich D. <135337715+shishkevichd@users.noreply.github.com>2025-04-06 12:40:33 +0300
committerGitHub <noreply@github.com>2025-04-06 12:40:33 +0300
commitbea19a263db88fef44b4356082b199fbfcc39a25 (patch)
treea111e9328c6273ad9721118238c40cf3004f72a9 /web/html/xui/settings/panel/telegram.html
parent878e0d02cd01a045f4f32464124c59e24f98aedd (diff)
Code refactoring (#2865)
* refactor: use vue inline styles in entire application * refactor: setting row in dashboard page * refactor: use blob for download file in text modal * refactor: move all html templates in `web/html` folder * refactor: `DeviceUtils` -> `MediaQueryMixin` The transition to mixins has been made, as they can update themselves. * chore: pretty right buttons in `outbounds` tab in xray settings * refactor: add translations for system status * refactor: adjust gutter spacing in setting list item * refactor: use native `a-input-password` for password field * chore: return old system status with new translations * chore: add missing translation
Diffstat (limited to 'web/html/xui/settings/panel/telegram.html')
-rw-r--r--web/html/xui/settings/panel/telegram.html87
1 files changed, 0 insertions, 87 deletions
diff --git a/web/html/xui/settings/panel/telegram.html b/web/html/xui/settings/panel/telegram.html
deleted file mode 100644
index 0f11fc86..00000000
--- a/web/html/xui/settings/panel/telegram.html
+++ /dev/null
@@ -1,87 +0,0 @@
-{{define "settings/panel/telegram"}}
-<a-collapse default-active-key="1">
- <a-collapse-panel key="1" header='{{ i18n "pages.xray.generalConfigs"}}'>
- <a-setting-list-item paddings="small">
- <template #title>{{ i18n "pages.settings.telegramBotEnable" }}</template>
- <template #description>{{ i18n "pages.settings.telegramBotEnableDesc" }}</template>
- <template #control>
- <a-switch v-model="allSetting.tgBotEnable"></a-switch>
- </template>
- </a-setting-list-item>
- <a-setting-list-item paddings="small">
- <template #title>{{ i18n "pages.settings.telegramToken"}}</template>
- <template #description>{{ i18n "pages.settings.telegramTokenDesc"}}</template>
- <template #control>
- <a-input type="text" v-model="allSetting.tgBotToken"></a-input>
- </template>
- </a-setting-list-item>
- <a-setting-list-item paddings="small">
- <template #title>{{ i18n "pages.settings.telegramChatId"}}</template>
- <template #description>{{ i18n "pages.settings.telegramChatIdDesc"}}</template>
- <template #control>
- <a-input type="text" v-model="allSetting.tgBotChatId"></a-input>
- </template>
- </a-setting-list-item>
- <a-setting-list-item paddings="small">
- <template #title>{{ i18n "pages.settings.telegramBotLanguage"}}</template>
- <template #control>
- <a-select ref="selectBotLang" v-model="allSetting.tgLang"
- :dropdown-class-name="themeSwitcher.currentTheme" style="width: 100%">
- <a-select-option :value="l.value" :label="l.value" v-for="l in LanguageManager.supportedLanguages">
- <span role="img" :aria-label="l.name" v-text="l.icon"></span> &nbsp;&nbsp; <span
- v-text="l.name"></span>
- </a-select-option>
- </a-select>
- </template>
- </a-setting-list-item>
- </a-collapse-panel>
- <a-collapse-panel key="2" header='{{ i18n "pages.settings.notifications" }}'>
- <a-setting-list-item paddings="small">
- <template #title>{{ i18n "pages.settings.telegramNotifyTime"}}</template>
- <template #description>{{ i18n "pages.settings.telegramNotifyTimeDesc"}}</template>
- <template #control>
- <a-input type="text" v-model="allSetting.tgRunTime"></a-input>
- </template>
- </a-setting-list-item>
- <a-setting-list-item paddings="small">
- <template #title>{{ i18n "pages.settings.tgNotifyBackup" }}</template>
- <template #description>{{ i18n "pages.settings.tgNotifyBackupDesc" }}</template>
- <template #control>
- <a-switch v-model="allSetting.tgBotBackup"></a-switch>
- </template>
- </a-setting-list-item>
- <a-setting-list-item paddings="small">
- <template #title>{{ i18n "pages.settings.tgNotifyLogin" }}</template>
- <template #description>{{ i18n "pages.settings.tgNotifyLoginDesc" }}</template>
- <template #control>
- <a-switch v-model="allSetting.tgBotLoginNotify"></a-switch>
- </template>
- </a-setting-list-item>
- <a-setting-list-item paddings="small">
- <template #title>{{ i18n "pages.settings.tgNotifyCpu" }}</template>
- <template #description>{{ i18n "pages.settings.tgNotifyCpuDesc" }}</template>
- <template #control>
- <a-input-number :min="0" :min="100" v-model="allSetting.tgCpu" style="width: 100%;"></a-switch>
- </template>
- </a-setting-list-item>
- </a-collapse-panel>
- <a-collapse-panel key="3" header='{{ i18n "pages.settings.proxyAndServer" }}'>
- <a-setting-list-item paddings="small">
- <template #title>{{ i18n "pages.settings.telegramProxy"}}</template>
- <template #description>{{ i18n "pages.settings.telegramProxyDesc"}}</template>
- <template #control>
- <a-input type="text" placeholder="socks5://user:pass@host:port"
- v-model="allSetting.tgBotProxy"></a-input>
- </template>
- </a-setting-list-item>
- <a-setting-list-item paddings="small">
- <template #title>{{ i18n "pages.settings.telegramAPIServer"}}</template>
- <template #description>{{ i18n "pages.settings.telegramAPIServerDesc"}}</template>
- <template #control>
- <a-input type="text" placeholder="https://api.example.com"
- v-model="allSetting.tgBotAPIServer"></a-input>
- </template>
- </a-setting-list-item>
- </a-collapse-panel>
-</a-collapse>
-{{end}} \ No newline at end of file