note that sso is not supported for ND auth

This commit is contained in:
Kendall Garner
2026-07-05 21:50:22 -07:00
parent 7b5df97fa0
commit 554e49cb85
2 changed files with 5 additions and 0 deletions
+1
View File
@@ -332,6 +332,7 @@
"input_legacyAuthentication": "Enable legacy authentication",
"input_name": "Server Name",
"input_password": "Password",
"input_passwordNoSSO": "Reverse proxy (SSO) authentication is not supported. Only username/password authentication and Subsonic authentication are supported",
"input_preferInstantMix": "Prefer Instant Mix",
"input_preferInstantMixDescription": "Only use instant mix to get similar songs. Useful if you have plugins that modify this behavior",
"input_preferRemoteUrl": "Prefer Public URL",
@@ -295,6 +295,10 @@ export const AddServerForm = ({ onCancel }: AddServerFormProps) => {
{...form.getInputProps('username')}
/>
<PasswordInput
description={
form.values.type === ServerType.NAVIDROME &&
t('form.addServer.input', { context: 'passwordNoSSO' })
}
label={t('form.addServer.input', {
context: 'password',
})}