Merge pull request #1131 from SISheogorath/fix/gitlabSnippets

Fix shown but broken GitLab snippets
This commit is contained in:
Christoph (Sheogorath) Kern
2019-03-09 14:50:47 +01:00
committed by GitHub

View File

@@ -128,7 +128,7 @@ if (config.gitlab && config.gitlab.version !== 'v4' && config.gitlab.version !==
config.gitlab.version = 'v4'
}
// If gitlab scope is api, enable snippets Export/import
config.isGitlabSnippetsEnable = (!config.gitlab.scope || config.gitlab.scope === 'api')
config.isGitlabSnippetsEnable = (!config.gitlab.scope || config.gitlab.scope === 'api') && config.isGitLabEnable
// Only update i18n files in development setups
config.updateI18nFiles = (env === Environment.development)