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.
1234567891011121314 |
- import {
- SET_PREJOIN_DISPLAY_NAME_REQUIRED
- } from './actionTypes';
-
- /**
- * Action used to set the stance of the display name.
- *
- * @returns {Object}
- */
- export function setPrejoinDisplayNameRequired() {
- return {
- type: SET_PREJOIN_DISPLAY_NAME_REQUIRED
- };
- }
|