webcomponent: Added missing and necessary js file Update .gitignore to specify backend public directory exclusion webcomponent: Add error handling for invalid base URL in OpenViduMeet component webcomponent: Update Jest configuration for improved testing setup webcomponent: Enhance iframe attribute tests and add support for optional query parameters webcomponent: Refactor documentation copying in build_webcomponent_doc function for improved readability and add absolute path resolution Add E2EE_KEY property to WebComponentProperty enum for end-to-end encryption support meet.sh: Enhance build_rest_api_doc function with output file handling and user confirmation for overwriting frontend: replace removeRoomSecretGuard with removeQueryParamsGuard for enhanced query parameter management frontend: add E2EE key handling in room service and update query params guard Updated pnpm-lock.yaml Enables end-to-end encryption (E2EE) Adds E2EE functionality to meeting rooms. Significant changes: - Allows encryption of the participant name - Introduces setting and getting E2EE keys - Ensures recording is disabled when encryption is enabled webcomponent: Added e2e test for checking the e2ee funcionality frontend: Sanitize participant name before request for a token fix: clean up formatting in openvidu-meet.code-workspace
52 lines
667 B
Plaintext
52 lines
667 B
Plaintext
# See http://help.github.com/ignore-files/ for more about ignoring files.
|
|
|
|
# compiled output
|
|
**/**/*.angular
|
|
**/**/dist
|
|
/tmp
|
|
/out-tsc
|
|
**/**/*.tgz
|
|
|
|
|
|
# dependencies
|
|
**/**/node_modules
|
|
**/**/target
|
|
|
|
# pnpm
|
|
.pnpm-store
|
|
.pnpm-debug.log
|
|
pnpm-debug.log*
|
|
|
|
|
|
# IDEs and editors
|
|
/.idea
|
|
.project
|
|
.classpath
|
|
.c9/
|
|
*.launch
|
|
.settings/
|
|
*.sublime-workspace
|
|
|
|
# IDE - VSCode
|
|
.history/*
|
|
|
|
|
|
.editorconfig
|
|
*.browserslistrc
|
|
.git/*
|
|
|
|
|
|
**/**/test-results
|
|
**/backend/public/
|
|
|
|
**/*/coverage
|
|
**/**/test-results
|
|
**/**/openvidu-meet.**.js
|
|
|
|
**/**/docs/webcomponent-attributes.md
|
|
**/**/docs/webcomponent-commands.md
|
|
**/**/docs/webcomponent-events.md
|
|
|
|
**/**/meet-pro
|
|
**/**/test_localstorage_state.json
|