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.

12345678910111213141516
  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 openDialog(InviteDialog, {
  11. conferenceUrl: encodeURI(APP.ConferenceUrl.getInviteUrl())
  12. });
  13. }