You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

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. }