-
Notifications
You must be signed in to change notification settings - Fork 10.6k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat: Un-encrypted messages not allowed in E2EE rooms (#32040)
Co-authored-by: gabriellsh <40830821+gabriellsh@users.noreply.github.com> Co-authored-by: Hugo Costa <20212776+hugocostadev@users.noreply.github.com>
- Loading branch information
1 parent
a565999
commit 4fd9c4c
Showing
22 changed files
with
700 additions
and
106 deletions.
There are no files selected for viewing
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,8 @@ | ||
--- | ||
'@rocket.chat/i18n': minor | ||
'@rocket.chat/meteor': minor | ||
--- | ||
|
||
Introduced a new setting which doesn't allow users to access encrypted rooms until E2EE is configured and also doesn't allow users to send un-encrypted messages in encrypted rooms. | ||
|
||
New room setup for E2EE feature which helps users to setup their E2EE keys and introduced states to E2EE feature. |
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
export enum E2EEState { | ||
NOT_STARTED = 'NOT_STARTED', | ||
DISABLED = 'DISABLED', | ||
LOADING_KEYS = 'LOADING_KEYS', | ||
READY = 'READY', | ||
SAVE_PASSWORD = 'SAVE_PASSWORD', | ||
ENTER_PASSWORD = 'ENTER_PASSWORD', | ||
ERROR = 'ERROR', | ||
} |
This file contains 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
Oops, something went wrong.