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:
parent
3266e9c22a
commit
14b1540715
@ -63,6 +63,9 @@ export const uiConfigSchema = {
|
||||
versionInfo: {
|
||||
$ref: '#/components/schemas/versionSchema',
|
||||
},
|
||||
embedProxy: {
|
||||
type: 'boolean',
|
||||
},
|
||||
},
|
||||
components: {
|
||||
schemas: {
|
||||
|
@ -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(
|
||||
|
@ -2829,6 +2829,9 @@ Object {
|
||||
"emailEnabled": Object {
|
||||
"type": "boolean",
|
||||
},
|
||||
"embedProxy": Object {
|
||||
"type": "boolean",
|
||||
},
|
||||
"environment": Object {
|
||||
"type": "string",
|
||||
},
|
||||
|
Loading…
Reference in New Issue
Block a user