Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 6 additions & 6 deletions apps/user_ldap/src/components/SettingsTabs/ServerTab.vue
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
type="switch"
:aria-label="t('user_ldap', 'When unchecked, this configuration will be skipped.')"
@update:model-value="ldapConfigProxy.ldapConfigurationActive = $event ? '1' : '0'">
{{ t('user_ldap', 'Configuration Active') }}
{{ t('user_ldap', 'Configuration active') }}
</NcCheckboxRadioSwitch>

<NcButton
Expand All @@ -36,19 +36,19 @@
:model-value="ldapConfigProxy.ldapHost"
:helper-text="t('user_ldap', 'You can omit the protocol, unless you require SSL. If so, start with ldaps://')"
:label="t('user_ldap', 'Host')"
:placeholder="t('user_ldap', 'ldaps://localhost')"
placeholder="ldaps://localhost"
autocomplete="off"
@change="(event) => ldapConfigProxy.ldapHost = event.target.value" />
<div class="ldap-wizard__server__host__port">
<NcTextField
:model-value="ldapConfigProxy.ldapPort"
:label="t('user_ldap', 'Port')"
:placeholder="t('user_ldap', '389')"
placeholder="389"
type="number"
autocomplete="off"
@change="(event) => ldapConfigProxy.ldapPort = event.target.value" />
<NcButton :disabled="loadingGuessPortAndTLS" @click="guessPortAndTLS">
{{ t('user_ldap', 'Detect Port') }}
{{ t('user_ldap', 'Detect port') }}
</NcButton>
</div>
</div>
Expand All @@ -58,7 +58,7 @@
v-model="localLdapAgentName"
:helper-text="t('user_ldap', 'The DN of the client user with which the bind shall be done. For anonymous access, leave DN and Password empty.')"
:label="t('user_ldap', 'User DN')"
:placeholder="t('user_ldap', 'uid=agent,dc=example,dc=com')"
placeholder="uid=agent,dc=example,dc=com"
autocomplete="off" />
</div>

Expand All @@ -71,7 +71,7 @@
autocomplete="off" />

<NcButton :disabled="!needsToSaveCredentials" @click="updateCredentials">
{{ t('user_ldap', 'Save Credentials') }}
{{ t('user_ldap', 'Save credentials') }}
</NcButton>
</div>

Expand Down
Loading