Skip to content

"join meeting" twice for unauthenticated users #23

Answered by emrahcom
uhillebrand asked this question in Q&A
Discussion options

You must be logged in to vote

Hi @uhillebrand,

I think it is possible by customizing /usr/share/jitsi-meet/body.html. The Javascript codes in this file catches the login button and redirects the user to Keycloak. You may embed an additional parameter to the return URL (which is config.prejoinConfig.enabled) to bypass the prejoin page after authentication.

So, find the following line in /usr/share/jitsi-meet/body.html:
It is line #10 in the current template

    const hash = encodeURIComponent(window.location.hash.substring(1));

and change it like the following:

    //const hash = encodeURIComponent(window.location.hash.substring(1));
    let hash = "config.prejoinConfig.enabled=false";
    if (window.location.hash) {

Replies: 1 comment 3 replies

Comment options

You must be logged in to vote
3 replies
@uhillebrand
Comment options

@emrahcom
Comment options

@uhillebrand
Comment options

Answer selected by uhillebrand
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Category
Q&A
Labels
None yet
2 participants