mirror of
https://github.com/vector-im/element-web.git
synced 2025-08-28 09:52:16 +02:00
Merge pull request #4526 from matrix-org/jryans/reset-from-access-rc
Allow resetting storage from the access dialog
This commit is contained in:
commit
db36b7e1d5
@ -21,6 +21,7 @@ import * as sdk from '../../../../index';
|
|||||||
import {MatrixClientPeg} from '../../../../MatrixClientPeg';
|
import {MatrixClientPeg} from '../../../../MatrixClientPeg';
|
||||||
|
|
||||||
import { _t } from '../../../../languageHandler';
|
import { _t } from '../../../../languageHandler';
|
||||||
|
import { accessSecretStorage } from '../../../../CrossSigningManager';
|
||||||
|
|
||||||
/*
|
/*
|
||||||
* Access Secure Secret Storage by requesting the user's passphrase.
|
* Access Secure Secret Storage by requesting the user's passphrase.
|
||||||
@ -55,8 +56,9 @@ export default class AccessSecretStorageDialog extends React.PureComponent {
|
|||||||
}
|
}
|
||||||
|
|
||||||
_onResetRecoveryClick = () => {
|
_onResetRecoveryClick = () => {
|
||||||
|
// Re-enter the access flow, but resetting storage this time around.
|
||||||
this.props.onFinished(false);
|
this.props.onFinished(false);
|
||||||
throw new Error("Resetting secret storage unimplemented");
|
accessSecretStorage(() => {}, /* forceReset = */ true);
|
||||||
}
|
}
|
||||||
|
|
||||||
_onRecoveryKeyChange = (e) => {
|
_onRecoveryKeyChange = (e) => {
|
||||||
|
Loading…
x
Reference in New Issue
Block a user