bigbluebutton-Github/build/package-names.inc.sh
Pedro Beschorner Marin 810deb907b refactor(etherpad): access control et al.
Move all Etherpad's access control from Meteor to a separated [Node application](https://github.com/bigbluebutton/bbb-pads).
This new app uses [Etherpad's API](https://etherpad.org/doc/v1.8.4/#index_overview)
to create groups and manage session tokens for users to access them. Each group
represents one distinct pad at the html5 client.

- Removed locked users' access to pads: replaced readOnly pad's access with a new pad's content sharing routine
- Pad's access is now controlled by [Etherpad's API](https://etherpad.org/doc/v1.8.4/#index_overview)
- Closed captions edited content now reflects at it's live feedback
- Improved closed caption's dictation mode live feedback
- Moved all Etherpad's API control from Meteor to a separated [app](https://github.com/bigbluebutton/bbb-pads)
- Included access control both in akka-apps and bbb-pads
2022-01-21 16:56:01 -03:00

28 lines
1.5 KiB
Bash

declare -A DEBNAME_TO_SOURCEDIR
DEBNAME_TO_SOURCEDIR[bbb-apps-akka]="akka-bbb-apps bbb-common-message"
DEBNAME_TO_SOURCEDIR[bbb-config]="bigbluebutton-config"
DEBNAME_TO_SOURCEDIR[bbb-demo]="bbb-api-demo"
DEBNAME_TO_SOURCEDIR[bbb-etherpad]="bbb-etherpad"
DEBNAME_TO_SOURCEDIR[bbb-freeswitch-core]="freeswitch bbb-voice-conference"
DEBNAME_TO_SOURCEDIR[bbb-freeswitch-sounds]="do_not_copy_anything"
DEBNAME_TO_SOURCEDIR[bbb-fsesl-akka]="akka-bbb-fsesl bbb-common-message bbb-fsesl-client"
DEBNAME_TO_SOURCEDIR[bbb-html5]="bigbluebutton-html5"
DEBNAME_TO_SOURCEDIR[bbb-learning-dashboard]="bbb-learning-dashboard"
DEBNAME_TO_SOURCEDIR[bbb-libreoffice-docker]="bbb-libreoffice"
DEBNAME_TO_SOURCEDIR[bbb-lti]="bbb-lti"
DEBNAME_TO_SOURCEDIR[bbb-mkclean]="do_not_copy_anything"
DEBNAME_TO_SOURCEDIR[bbb-pads]="bbb-pads"
DEBNAME_TO_SOURCEDIR[bbb-playback]="bbb-playback"
DEBNAME_TO_SOURCEDIR[bbb-playback-notes]="record-and-playback/notes"
DEBNAME_TO_SOURCEDIR[bbb-playback-podcast]="record-and-playback/podcast"
DEBNAME_TO_SOURCEDIR[bbb-playback-presentation]="record-and-playback/presentation"
DEBNAME_TO_SOURCEDIR[bbb-playback-screenshare]="record-and-playback/screenshare"
DEBNAME_TO_SOURCEDIR[bbb-record-core]="record-and-playback/core"
DEBNAME_TO_SOURCEDIR[bbb-web]="bigbluebutton-web bbb-common-web bbb-common-message"
DEBNAME_TO_SOURCEDIR[bbb-webhooks]="bbb-webhooks"
DEBNAME_TO_SOURCEDIR[bbb-webrtc-sfu]="bbb-webrtc-sfu"
DEBNAME_TO_SOURCEDIR[bigbluebutton]="do_not_copy_anything"
export DEBNAME_TO_SOURCEDIR