1
0
mirror of https://github.com/Unleash/unleash.git synced 2025-01-25 00:07:47 +01:00

feat: add feature flag for embedded proxy (#1939)

* feat: add feature flag for embedded proxy

* update snapshot for config
This commit is contained in:
Tymoteusz Czech 2022-08-18 11:26:31 +02:00 committed by GitHub
parent 3266e9c22a
commit 14b1540715
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
3 changed files with 7 additions and 0 deletions

View File

@ -63,6 +63,9 @@ export const uiConfigSchema = {
versionInfo: {
$ref: '#/components/schemas/versionSchema',
},
embedProxy: {
type: 'boolean',
},
},
components: {
schemas: {

View File

@ -87,6 +87,7 @@ class ConfigController extends Controller {
strategySegmentsLimit: this.config.strategySegmentsLimit,
versionInfo: this.versionService.getVersionInfo(),
disablePasswordAuth,
embedProxy: this.config.experimental.embedProxy,
};
this.openApiService.respondWithValidation(

View File

@ -2829,6 +2829,9 @@ Object {
"emailEnabled": Object {
"type": "boolean",
},
"embedProxy": Object {
"type": "boolean",
},
"environment": Object {
"type": "string",
},