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

actions.js 384B

123456789101112131415161718
  1. /* globals APP */
  2. import { openDialog } from '../../features/base/dialog';
  3. import { InviteDialog } from './components';
  4. /**
  5. * Opens the Invite Dialog.
  6. *
  7. * @returns {Function}
  8. */
  9. export function openInviteDialog() {
  10. return dispatch => {
  11. dispatch(openDialog(InviteDialog, {
  12. conferenceUrl: encodeURI(APP.ConferenceUrl.getInviteUrl())
  13. }));
  14. };
  15. }