fix(PROJ-16): LDAP URL-Feld zeigt flexible Port-Hinweise inkl. Univention UCS (7389/7636)
This commit is contained in:
+12
-3
@@ -1840,10 +1840,13 @@ export default function AdminPage() {
|
|||||||
<Label htmlFor="ldap-url">Server-URL</Label>
|
<Label htmlFor="ldap-url">Server-URL</Label>
|
||||||
<Input
|
<Input
|
||||||
id="ldap-url"
|
id="ldap-url"
|
||||||
placeholder="ldap://dc.example.com:389"
|
placeholder="ldap://server:389 oder ldaps://server:636"
|
||||||
value={ldapForm.url}
|
value={ldapForm.url}
|
||||||
onChange={(e) => setLdapForm((f) => ({ ...f, url: e.target.value }))}
|
onChange={(e) => setLdapForm((f) => ({ ...f, url: e.target.value }))}
|
||||||
/>
|
/>
|
||||||
|
<p className="text-xs text-muted-foreground">
|
||||||
|
Port frei wählbar · Standard: 389 (LDAP), 636 (LDAPS) · Univention UCS: 7389 / 7636
|
||||||
|
</p>
|
||||||
</div>
|
</div>
|
||||||
<div className="space-y-2">
|
<div className="space-y-2">
|
||||||
<Label htmlFor="ldap-bind-dn">Bind-DN (Service-Account)</Label>
|
<Label htmlFor="ldap-bind-dn">Bind-DN (Service-Account)</Label>
|
||||||
@@ -2102,10 +2105,13 @@ export default function AdminPage() {
|
|||||||
<Label htmlFor="tldap-url">Server-URL</Label>
|
<Label htmlFor="tldap-url">Server-URL</Label>
|
||||||
<Input
|
<Input
|
||||||
id="tldap-url"
|
id="tldap-url"
|
||||||
placeholder="ldap://dc.example.com:389"
|
placeholder="ldap://server:389 oder ldaps://server:636"
|
||||||
value={tenantLdapForm.url}
|
value={tenantLdapForm.url}
|
||||||
onChange={(e) => setTenantLdapForm((f) => ({ ...f, url: e.target.value }))}
|
onChange={(e) => setTenantLdapForm((f) => ({ ...f, url: e.target.value }))}
|
||||||
/>
|
/>
|
||||||
|
<p className="text-xs text-muted-foreground">
|
||||||
|
Port frei wählbar · Standard: 389 (LDAP), 636 (LDAPS) · Univention UCS: 7389 / 7636
|
||||||
|
</p>
|
||||||
</div>
|
</div>
|
||||||
<div className="space-y-2">
|
<div className="space-y-2">
|
||||||
<Label htmlFor="tldap-bind-dn">Bind-DN (Service-Account)</Label>
|
<Label htmlFor="tldap-bind-dn">Bind-DN (Service-Account)</Label>
|
||||||
@@ -3065,10 +3071,13 @@ function TenantLDAPDialog({ tenantID, onClose }: { tenantID: number; onClose: ()
|
|||||||
<Label htmlFor={`atldap-url-${tenantID}`}>Server-URL</Label>
|
<Label htmlFor={`atldap-url-${tenantID}`}>Server-URL</Label>
|
||||||
<Input
|
<Input
|
||||||
id={`atldap-url-${tenantID}`}
|
id={`atldap-url-${tenantID}`}
|
||||||
placeholder="ldap://dc.example.com:389"
|
placeholder="ldap://server:389 oder ldaps://server:636"
|
||||||
value={form.url}
|
value={form.url}
|
||||||
onChange={(e) => setForm((f) => ({ ...f, url: e.target.value }))}
|
onChange={(e) => setForm((f) => ({ ...f, url: e.target.value }))}
|
||||||
/>
|
/>
|
||||||
|
<p className="text-xs text-muted-foreground">
|
||||||
|
Port frei wählbar · Standard: 389 (LDAP), 636 (LDAPS) · Univention UCS: 7389 / 7636
|
||||||
|
</p>
|
||||||
</div>
|
</div>
|
||||||
<div className="space-y-2">
|
<div className="space-y-2">
|
||||||
<Label htmlFor={`atldap-bind-dn-${tenantID}`}>Bind-DN (Service-Account)</Label>
|
<Label htmlFor={`atldap-bind-dn-${tenantID}`}>Bind-DN (Service-Account)</Label>
|
||||||
|
|||||||
Reference in New Issue
Block a user