您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符

actions.js 307B

12345678910111213141516
  1. // @flow
  2. import { SET_E2EE_KEY } from './actionTypes';
  3. /**
  4. * Dispatches an action to set the E2EE key.
  5. *
  6. * @param {string|undefined} key - The new key to be used for E2EE.
  7. * @returns {Object}
  8. */
  9. export function setE2EEKey(key: ?string) {
  10. return {
  11. type: SET_E2EE_KEY,
  12. key
  13. };
  14. }