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

actions.any.ts 278B

1234567891011121314
  1. import {
  2. SET_PREJOIN_DISPLAY_NAME_REQUIRED
  3. } from './actionTypes';
  4. /**
  5. * Action used to set the stance of the display name.
  6. *
  7. * @returns {Object}
  8. */
  9. export function setPrejoinDisplayNameRequired() {
  10. return {
  11. type: SET_PREJOIN_DISPLAY_NAME_REQUIRED
  12. };
  13. }