選択できるのは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. }