Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -3007,6 +3007,10 @@
"description": "client certificate authentication comma-separated exclusion paths",
"type": "string"
},
"endToEndEncryptionEnabled": {
"description": "Whether to use end to end encryption between the FrontEnd and the Worker",
"type": "boolean"
},
"hostNamesDisabled": {
"description": "<code>true</code> to disable the public hostnames of the app; otherwise, <code>false</code>.\n If <code>true</code>, the app is only accessible via API management process.",
"type": "boolean"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -3007,6 +3007,10 @@
"description": "client certificate authentication comma-separated exclusion paths",
"type": "string"
},
"endToEndEncryptionEnabled": {
Copy link
Copy Markdown
Member

@razvanbadea-msft razvanbadea-msft Jul 23, 2024

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

endToEndEncryptionEnabled

In place of adding a boolean flag you should use an enum like EncryptionType with values like [EndToEnd, None], in this way if in the future versions you are enabling another type of encryption it will just add a new value to the enum in place of other properties #Resolved

Copy link
Copy Markdown
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

The feature is already implemented in our backend using a boolean. We are happy with it this way.

"description": "Whether to use end to end encryption between the FrontEnd and the Worker",
"type": "boolean"
},
"hostNamesDisabled": {
"description": "<code>true</code> to disable the public hostnames of the app; otherwise, <code>false</code>.\n If <code>true</code>, the app is only accessible via API management process.",
"type": "boolean"
Expand Down