Hello there,
how can i deactivate some menu items from the more actions menu? I found the code in /usr/share/jitsi-meet-web-config/config.js and deleted everything i wanted. But i see still the defaults. Am i in the right file?
Hello Emrah,
in the new version it moved to the folder meet-web-config. What i can see is that as a moderator i see the complete nav items. As a user i see only a few. But it seems, that it is not the selection i provided.
Strange thing. Or is it not working in this release. Anybody an idea?
Hello shawn, yes i see all my changes. But the changes for the custom menu are missing. I would like to hide recording, stats, live stream, share audio, share video. I think i´m editing the wrong file.
I did, but it is not working. And it´s really complicated, because you have to look for each item. It´s not so easy as the old version.
// Local Recording
//
// localRecording: {
// Enables local recording.
// Additionally, 'localrecording' (all lowercase) needs to be added to
// TOOLBAR_BUTTONS in interface_config.js for the Local Recording
// button to show up on the toolbar.
//
// enabled: false,
//
// The recording format, can be one of 'ogg', 'flac' or 'wav'.
// format: 'flac'
//
// },
I´m sorry for not responding so quick. The solution is super easy. You where right. Everything is in the https://meet.yoursite.com/config.js. But every Action Button seperatley. I wasn´t awary of it. Sorry for such a waste of time…
If someone is looking for it. It looks like this:
// Recording
// Whether to enable file recording or not.
fileRecordingsEnabled: false,
// Enable the dropbox integration.
// dropbox: {
// appKey: '<APP_KEY>' // Specify your app key here.
// // A URL to redirect the user to, after authenticating
// // by default uses:
// // 'https://meet.bds-hh.de/static/oauth.html'
// redirectURI:
// 'https://meet.bds-hh.de/subfolder/static/oauth.html'
// },
// When integrations like dropbox are enabled only that will be shown,
// by enabling fileRecordingsServiceEnabled, we show both the integrations
// and the generic recording service (its configuration and storage type
// depends on jibri configuration)
// fileRecordingsServiceEnabled: false,
// Whether to show the possibility to share file recording with other people
// (e.g. meeting participants), based on the actual implementation
// on the backend.
// fileRecordingsServiceSharingEnabled: false,
// Whether to enable live streaming or not.
liveStreamingEnabled: false,