Skip to content

Commit

Permalink
CB-5978 api token change description (#3160)
Browse files Browse the repository at this point in the history
* CB-5978 hides API Token provider during configuration wizzard

* CB-5978 hides API token only for config mode (fix)

---------

Co-authored-by: Daria Marutkina <125263541+dariamarutkina@users.noreply.github.com>
  • Loading branch information
sergeyteleshev and dariamarutkina authored Dec 25, 2024
1 parent aa778e0 commit 8f61321
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@ export const AuthenticationProviders: PlaceholderComponent<IConfigurationPlaceho
if (configurationWizard) {
const disabledByFeature = provider.requiredFeatures.some(feat => !serverConfig.enabledFeatures?.includes(feat));

if (provider.configurable || disabledByFeature) {
if (provider.configurable || disabledByFeature || provider.authHidden) {
return false;
}
}
Expand Down

0 comments on commit 8f61321

Please sign in to comment.