mirror of
https://github.com/MHSanaei/3x-ui.git
synced 2025-03-01 01:20:49 +03:00
more details - vmess security
This commit is contained in:
parent
566cd9e9c4
commit
89c79c3ec3
@ -28,7 +28,7 @@
|
|||||||
<a-form-item label='{{ i18n "pages.client.clientCount" }}' v-if="clientsBulkModal.emailMethod < 2">
|
<a-form-item label='{{ i18n "pages.client.clientCount" }}' v-if="clientsBulkModal.emailMethod < 2">
|
||||||
<a-input-number v-model="clientsBulkModal.quantity" :min="1" :max="100"></a-input-number>
|
<a-input-number v-model="clientsBulkModal.quantity" :min="1" :max="100"></a-input-number>
|
||||||
</a-form-item>
|
</a-form-item>
|
||||||
<a-form-item v-if="inbound.protocol === Protocols.VMESS" label='Security'>
|
<a-form-item label='{{ i18n "security" }}' v-if="inbound.protocol === Protocols.VMESS">
|
||||||
<a-select v-model="clientsBulkModal.security" :dropdown-class-name="themeSwitcher.currentTheme">
|
<a-select v-model="clientsBulkModal.security" :dropdown-class-name="themeSwitcher.currentTheme">
|
||||||
<a-select-option v-for="key in USERS_SECURITY" :value="key">[[ key ]]</a-select-option>
|
<a-select-option v-for="key in USERS_SECURITY" :value="key">[[ key ]]</a-select-option>
|
||||||
</a-select>
|
</a-select>
|
||||||
|
@ -39,7 +39,7 @@
|
|||||||
</template>
|
</template>
|
||||||
<a-input v-model.trim="client.id"></a-input>
|
<a-input v-model.trim="client.id"></a-input>
|
||||||
</a-form-item>
|
</a-form-item>
|
||||||
<a-form-item v-if="inbound.protocol === Protocols.VMESS" label='Security'>
|
<a-form-item v-if="inbound.protocol === Protocols.VMESS" label='{{ i18n "security" }}'>
|
||||||
<a-select v-model="client.security" :dropdown-class-name="themeSwitcher.currentTheme">
|
<a-select v-model="client.security" :dropdown-class-name="themeSwitcher.currentTheme">
|
||||||
<a-select-option v-for="key in USERS_SECURITY" :value="key">[[ key ]]</a-select-option>
|
<a-select-option v-for="key in USERS_SECURITY" :value="key">[[ key ]]</a-select-option>
|
||||||
</a-select>
|
</a-select>
|
||||||
|
@ -10,7 +10,7 @@
|
|||||||
<tr class="client-table-header">
|
<tr class="client-table-header">
|
||||||
<th>{{ i18n "pages.inbounds.email" }}</th>
|
<th>{{ i18n "pages.inbounds.email" }}</th>
|
||||||
<th>ID</th>
|
<th>ID</th>
|
||||||
<th>Security</th>
|
<th>{{ i18n "security" }}</th>
|
||||||
</tr>
|
</tr>
|
||||||
<tr v-for="(client, index) in inbound.settings.vmesses" :class="index % 2 == 1 ? 'client-table-odd-row' : ''">
|
<tr v-for="(client, index) in inbound.settings.vmesses" :class="index % 2 == 1 ? 'client-table-odd-row' : ''">
|
||||||
<td>[[ client.email ]]</td>
|
<td>[[ client.email ]]</td>
|
||||||
|
@ -139,6 +139,12 @@
|
|||||||
<a-tag>[[ infoModal.clientSettings.id ]]</a-tag>
|
<a-tag>[[ infoModal.clientSettings.id ]]</a-tag>
|
||||||
</td>
|
</td>
|
||||||
</tr>
|
</tr>
|
||||||
|
<tr v-if="dbInbound.isVMess">
|
||||||
|
<td>{{ i18n "security" }}</td>
|
||||||
|
<td>
|
||||||
|
<a-tag>[[ infoModal.clientSettings.security ]]</a-tag>
|
||||||
|
</td>
|
||||||
|
</tr>
|
||||||
<tr v-if="infoModal.inbound.canEnableTlsFlow()">
|
<tr v-if="infoModal.inbound.canEnableTlsFlow()">
|
||||||
<td>Flow</td>
|
<td>Flow</td>
|
||||||
<td v-if="infoModal.clientSettings.flow">
|
<td v-if="infoModal.clientSettings.flow">
|
||||||
|
Loading…
Reference in New Issue
Block a user