Nevar pievienot vairāk kā 25 tēmas Tēmai ir jāsākas ar burtu vai ciparu, tā var saturēt domu zīmes ('-') un var būt līdz 35 simboliem gara.

actions.js 337B

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