"Fossies" - the Fresh Open Source Software Archive

Member "jitsi-meet-7323/resources/prosody-plugins/mod_av_moderation.lua" (7 Jun 2023, 296 Bytes) of package /linux/misc/jitsi-meet-7323.tar.gz:


As a special service "Fossies" has tried to format the requested source page into HTML format using (guessed) Lua source code syntax highlighting (style: standard) with prefixed line numbers and code folding option. Alternatively you can here view or download the uninterpreted source code file.

    1 local avmoderation_component = module:get_option_string('av_moderation_component', 'avmoderation.'..module.host);
    2 
    3 -- Advertise AV Moderation so client can pick up the address and use it
    4 module:add_identity('component', 'av_moderation', avmoderation_component);
    5 
    6 module:depends("jitsi_session");