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