Show Git server settings in Enterprise mode - #80
Open
villanella wants to merge 1 commit into
Open
villanella wants to merge 1 commit into
villanella wants to merge 1 commit into
Conversation
villanella
force-pushed
the
fix/gitlab-url-field-hidden-in-enterprise-mode
branch
from
September 12, 2026 19:39
88adfb1 to
5e63538
Compare
DocHubToolWindow only forwards gitServerMode/gitServer to the frontend when usingMode is Enterprise, but the settings UI hid those exact fields whenever Enterprise mode was selected - leaving no way to configure DOCHUB_IDE_GITLAB_URL/DOCHUB_IDE_BITBUCKET_URL for gitlab:/bitbucket: imports on an Enterprise portal. This client-side override is also currently the only reliable option, since setting VUE_APP_DOCHUB_GITLAB_URL on the server without a personal token triggers an unrelated OAuth redirect bug in the core app.
villanella
force-pushed
the
fix/gitlab-url-field-hidden-in-enterprise-mode
branch
from
September 12, 2026 19:45
5e63538 to
e5eb5e5
Compare
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
DocHubToolWindow forwards gitServerMode/gitServer into the env passed
to the frontend only when usingMode is Enterprise (isEnterprise() &&
gitServerMode.equals("Gitlab"/"Bitbucket")), but the settings UI hid those exact
fields when Enterprise mode was selected - leaving no way to
configure DOCHUB_IDE_GITLAB_URL/DOCHUB_IDE_BITBUCKET_URL for
gitlab:/bitbucket: imports on an Enterprise portal. This client-side
override is also currently the only reliable option, since setting
VUE_APP_DOCHUB_GITLAB_URL on the server without a personal token
triggers an OAuth redirect bug in the core app.
Fixes #79