├── .eslintignore ├── .github ├── CODEOWNERS ├── CODE_OF_CONDUCT.md ├── ISSUE_TEMPLATE │ └── report-an-issue.md ├── PULL_REQUEST_TEMPLATE.md └── workflows │ ├── ci.yml │ └── release.yml ├── .gitignore ├── CONTRIBUTING.md ├── Calling ├── .babelrc.js ├── .common.babelrc.js ├── .eslintignore ├── .eslintrc.js ├── .prettierignore ├── .prettierrc ├── LICENSE ├── Media │ ├── attach-debugger.png │ └── homepage-sample-calling.png ├── README.md ├── common.tsconfig.json ├── common.webpack.config.js ├── package-lock.json ├── package.json ├── public │ ├── assets │ │ ├── backgrounds │ │ │ ├── abstract1.jpg │ │ │ ├── abstract2.jpg │ │ │ ├── abstract3.jpg │ │ │ ├── contoso.png │ │ │ ├── room1.jpg │ │ │ ├── room2.jpg │ │ │ ├── room3.jpg │ │ │ └── room4.jpg │ │ ├── reactions │ │ │ ├── clapEmoji.png │ │ │ ├── heartEmoji.png │ │ │ ├── laughEmoji.png │ │ │ ├── likeEmoji.png │ │ │ └── surprisedEmoji.png │ │ └── sounds │ │ │ ├── callBusy.mp3 │ │ │ ├── callEnded.mp3 │ │ │ └── callRinging.mp3 │ ├── index.html │ └── manifest.json ├── src │ ├── app │ │ ├── App.tsx │ │ ├── styles │ │ │ ├── CallScreen.styles.ts │ │ │ ├── DisplayNameField.styles.ts │ │ │ ├── EndCall.styles.ts │ │ │ ├── Footer.styles.ts │ │ │ ├── HomeScreen.styles.ts │ │ │ └── StartCallButton.styles.ts │ │ ├── theming │ │ │ ├── SwitchableFluentThemeProvider.tsx │ │ │ └── ThemeSelector.tsx │ │ ├── utils │ │ │ ├── AppUtils.test.ts │ │ │ ├── AppUtils.ts │ │ │ ├── credential.ts │ │ │ ├── localStorage.ts │ │ │ ├── useIsMobile.ts │ │ │ └── utils.ts │ │ └── views │ │ │ ├── CallCompositeContainer.tsx │ │ │ ├── CallError.tsx │ │ │ ├── CallScreen.tsx │ │ │ ├── DisplayNameField.tsx │ │ │ ├── Footer.tsx │ │ │ ├── HomeScreen.tsx │ │ │ ├── NoticePage.tsx │ │ │ ├── PageOpenInAnotherTab.tsx │ │ │ └── UnsupportedBrowserPage.tsx │ ├── assets │ │ ├── assets.d.ts │ │ └── hero.svg │ ├── index.css │ └── index.tsx ├── tsconfig.json ├── tsconfig.preprocess.json └── webpack.config.js ├── LICENSE.md ├── README.md ├── SECURITY.md ├── Server ├── .eslintignore ├── .eslintrc.js ├── .prettierignore ├── .prettierrc ├── LICENSE ├── appsettings.json ├── bin │ └── www.ts ├── dist │ └── web.config ├── jest.config.js ├── package-lock.json ├── package.json ├── src │ ├── app.test.ts │ ├── app.ts │ ├── azureDeployExistingResource.test.ts │ ├── lib │ │ ├── chat │ │ │ ├── moderator.ts │ │ │ └── userIdToUserConfigMap.ts │ │ ├── envHelper.ts │ │ └── identityClient.ts │ └── routes │ │ ├── addUser.ts │ │ ├── addUserToRoom.ts │ │ ├── createRoom.ts │ │ ├── createThread.ts │ │ ├── getEndpointUrl.ts │ │ ├── issueToken.ts │ │ ├── refreshToken.ts │ │ └── userConfig.ts ├── tsconfig.json ├── web.config └── webpack.config.ts ├── deploy ├── azuredeploy.json └── azuredeployexistingresource.json ├── docs └── dependency-management-guide.md └── package.json /.eslintignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/communication-services-web-calling-hero/HEAD/.eslintignore -------------------------------------------------------------------------------- /.github/CODEOWNERS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/communication-services-web-calling-hero/HEAD/.github/CODEOWNERS -------------------------------------------------------------------------------- /.github/CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/communication-services-web-calling-hero/HEAD/.github/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/report-an-issue.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/communication-services-web-calling-hero/HEAD/.github/ISSUE_TEMPLATE/report-an-issue.md -------------------------------------------------------------------------------- /.github/PULL_REQUEST_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/communication-services-web-calling-hero/HEAD/.github/PULL_REQUEST_TEMPLATE.md -------------------------------------------------------------------------------- /.github/workflows/ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/communication-services-web-calling-hero/HEAD/.github/workflows/ci.yml -------------------------------------------------------------------------------- /.github/workflows/release.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/communication-services-web-calling-hero/HEAD/.github/workflows/release.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/communication-services-web-calling-hero/HEAD/.gitignore -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/communication-services-web-calling-hero/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /Calling/.babelrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/communication-services-web-calling-hero/HEAD/Calling/.babelrc.js -------------------------------------------------------------------------------- /Calling/.common.babelrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/communication-services-web-calling-hero/HEAD/Calling/.common.babelrc.js -------------------------------------------------------------------------------- /Calling/.eslintignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/communication-services-web-calling-hero/HEAD/Calling/.eslintignore -------------------------------------------------------------------------------- /Calling/.eslintrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/communication-services-web-calling-hero/HEAD/Calling/.eslintrc.js -------------------------------------------------------------------------------- /Calling/.prettierignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/communication-services-web-calling-hero/HEAD/Calling/.prettierignore -------------------------------------------------------------------------------- /Calling/.prettierrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/communication-services-web-calling-hero/HEAD/Calling/.prettierrc -------------------------------------------------------------------------------- /Calling/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/communication-services-web-calling-hero/HEAD/Calling/LICENSE -------------------------------------------------------------------------------- /Calling/Media/attach-debugger.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/communication-services-web-calling-hero/HEAD/Calling/Media/attach-debugger.png -------------------------------------------------------------------------------- /Calling/Media/homepage-sample-calling.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/communication-services-web-calling-hero/HEAD/Calling/Media/homepage-sample-calling.png -------------------------------------------------------------------------------- /Calling/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/communication-services-web-calling-hero/HEAD/Calling/README.md -------------------------------------------------------------------------------- /Calling/common.tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/communication-services-web-calling-hero/HEAD/Calling/common.tsconfig.json -------------------------------------------------------------------------------- /Calling/common.webpack.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/communication-services-web-calling-hero/HEAD/Calling/common.webpack.config.js -------------------------------------------------------------------------------- /Calling/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/communication-services-web-calling-hero/HEAD/Calling/package-lock.json -------------------------------------------------------------------------------- /Calling/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/communication-services-web-calling-hero/HEAD/Calling/package.json -------------------------------------------------------------------------------- /Calling/public/assets/backgrounds/abstract1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/communication-services-web-calling-hero/HEAD/Calling/public/assets/backgrounds/abstract1.jpg -------------------------------------------------------------------------------- /Calling/public/assets/backgrounds/abstract2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/communication-services-web-calling-hero/HEAD/Calling/public/assets/backgrounds/abstract2.jpg -------------------------------------------------------------------------------- /Calling/public/assets/backgrounds/abstract3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/communication-services-web-calling-hero/HEAD/Calling/public/assets/backgrounds/abstract3.jpg -------------------------------------------------------------------------------- /Calling/public/assets/backgrounds/contoso.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/communication-services-web-calling-hero/HEAD/Calling/public/assets/backgrounds/contoso.png -------------------------------------------------------------------------------- /Calling/public/assets/backgrounds/room1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/communication-services-web-calling-hero/HEAD/Calling/public/assets/backgrounds/room1.jpg -------------------------------------------------------------------------------- /Calling/public/assets/backgrounds/room2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/communication-services-web-calling-hero/HEAD/Calling/public/assets/backgrounds/room2.jpg -------------------------------------------------------------------------------- /Calling/public/assets/backgrounds/room3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/communication-services-web-calling-hero/HEAD/Calling/public/assets/backgrounds/room3.jpg -------------------------------------------------------------------------------- /Calling/public/assets/backgrounds/room4.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/communication-services-web-calling-hero/HEAD/Calling/public/assets/backgrounds/room4.jpg -------------------------------------------------------------------------------- /Calling/public/assets/reactions/clapEmoji.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/communication-services-web-calling-hero/HEAD/Calling/public/assets/reactions/clapEmoji.png -------------------------------------------------------------------------------- /Calling/public/assets/reactions/heartEmoji.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/communication-services-web-calling-hero/HEAD/Calling/public/assets/reactions/heartEmoji.png -------------------------------------------------------------------------------- /Calling/public/assets/reactions/laughEmoji.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/communication-services-web-calling-hero/HEAD/Calling/public/assets/reactions/laughEmoji.png -------------------------------------------------------------------------------- /Calling/public/assets/reactions/likeEmoji.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/communication-services-web-calling-hero/HEAD/Calling/public/assets/reactions/likeEmoji.png -------------------------------------------------------------------------------- /Calling/public/assets/reactions/surprisedEmoji.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/communication-services-web-calling-hero/HEAD/Calling/public/assets/reactions/surprisedEmoji.png -------------------------------------------------------------------------------- /Calling/public/assets/sounds/callBusy.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/communication-services-web-calling-hero/HEAD/Calling/public/assets/sounds/callBusy.mp3 -------------------------------------------------------------------------------- /Calling/public/assets/sounds/callEnded.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/communication-services-web-calling-hero/HEAD/Calling/public/assets/sounds/callEnded.mp3 -------------------------------------------------------------------------------- /Calling/public/assets/sounds/callRinging.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/communication-services-web-calling-hero/HEAD/Calling/public/assets/sounds/callRinging.mp3 -------------------------------------------------------------------------------- /Calling/public/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/communication-services-web-calling-hero/HEAD/Calling/public/index.html -------------------------------------------------------------------------------- /Calling/public/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/communication-services-web-calling-hero/HEAD/Calling/public/manifest.json -------------------------------------------------------------------------------- /Calling/src/app/App.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/communication-services-web-calling-hero/HEAD/Calling/src/app/App.tsx -------------------------------------------------------------------------------- /Calling/src/app/styles/CallScreen.styles.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/communication-services-web-calling-hero/HEAD/Calling/src/app/styles/CallScreen.styles.ts -------------------------------------------------------------------------------- /Calling/src/app/styles/DisplayNameField.styles.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/communication-services-web-calling-hero/HEAD/Calling/src/app/styles/DisplayNameField.styles.ts -------------------------------------------------------------------------------- /Calling/src/app/styles/EndCall.styles.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/communication-services-web-calling-hero/HEAD/Calling/src/app/styles/EndCall.styles.ts -------------------------------------------------------------------------------- /Calling/src/app/styles/Footer.styles.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/communication-services-web-calling-hero/HEAD/Calling/src/app/styles/Footer.styles.ts -------------------------------------------------------------------------------- /Calling/src/app/styles/HomeScreen.styles.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/communication-services-web-calling-hero/HEAD/Calling/src/app/styles/HomeScreen.styles.ts -------------------------------------------------------------------------------- /Calling/src/app/styles/StartCallButton.styles.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/communication-services-web-calling-hero/HEAD/Calling/src/app/styles/StartCallButton.styles.ts -------------------------------------------------------------------------------- /Calling/src/app/theming/SwitchableFluentThemeProvider.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/communication-services-web-calling-hero/HEAD/Calling/src/app/theming/SwitchableFluentThemeProvider.tsx -------------------------------------------------------------------------------- /Calling/src/app/theming/ThemeSelector.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/communication-services-web-calling-hero/HEAD/Calling/src/app/theming/ThemeSelector.tsx -------------------------------------------------------------------------------- /Calling/src/app/utils/AppUtils.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/communication-services-web-calling-hero/HEAD/Calling/src/app/utils/AppUtils.test.ts -------------------------------------------------------------------------------- /Calling/src/app/utils/AppUtils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/communication-services-web-calling-hero/HEAD/Calling/src/app/utils/AppUtils.ts -------------------------------------------------------------------------------- /Calling/src/app/utils/credential.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/communication-services-web-calling-hero/HEAD/Calling/src/app/utils/credential.ts -------------------------------------------------------------------------------- /Calling/src/app/utils/localStorage.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/communication-services-web-calling-hero/HEAD/Calling/src/app/utils/localStorage.ts -------------------------------------------------------------------------------- /Calling/src/app/utils/useIsMobile.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/communication-services-web-calling-hero/HEAD/Calling/src/app/utils/useIsMobile.ts -------------------------------------------------------------------------------- /Calling/src/app/utils/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/communication-services-web-calling-hero/HEAD/Calling/src/app/utils/utils.ts -------------------------------------------------------------------------------- /Calling/src/app/views/CallCompositeContainer.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/communication-services-web-calling-hero/HEAD/Calling/src/app/views/CallCompositeContainer.tsx -------------------------------------------------------------------------------- /Calling/src/app/views/CallError.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/communication-services-web-calling-hero/HEAD/Calling/src/app/views/CallError.tsx -------------------------------------------------------------------------------- /Calling/src/app/views/CallScreen.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/communication-services-web-calling-hero/HEAD/Calling/src/app/views/CallScreen.tsx -------------------------------------------------------------------------------- /Calling/src/app/views/DisplayNameField.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/communication-services-web-calling-hero/HEAD/Calling/src/app/views/DisplayNameField.tsx -------------------------------------------------------------------------------- /Calling/src/app/views/Footer.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/communication-services-web-calling-hero/HEAD/Calling/src/app/views/Footer.tsx -------------------------------------------------------------------------------- /Calling/src/app/views/HomeScreen.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/communication-services-web-calling-hero/HEAD/Calling/src/app/views/HomeScreen.tsx -------------------------------------------------------------------------------- /Calling/src/app/views/NoticePage.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/communication-services-web-calling-hero/HEAD/Calling/src/app/views/NoticePage.tsx -------------------------------------------------------------------------------- /Calling/src/app/views/PageOpenInAnotherTab.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/communication-services-web-calling-hero/HEAD/Calling/src/app/views/PageOpenInAnotherTab.tsx -------------------------------------------------------------------------------- /Calling/src/app/views/UnsupportedBrowserPage.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/communication-services-web-calling-hero/HEAD/Calling/src/app/views/UnsupportedBrowserPage.tsx -------------------------------------------------------------------------------- /Calling/src/assets/assets.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/communication-services-web-calling-hero/HEAD/Calling/src/assets/assets.d.ts -------------------------------------------------------------------------------- /Calling/src/assets/hero.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/communication-services-web-calling-hero/HEAD/Calling/src/assets/hero.svg -------------------------------------------------------------------------------- /Calling/src/index.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/communication-services-web-calling-hero/HEAD/Calling/src/index.css -------------------------------------------------------------------------------- /Calling/src/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/communication-services-web-calling-hero/HEAD/Calling/src/index.tsx -------------------------------------------------------------------------------- /Calling/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/communication-services-web-calling-hero/HEAD/Calling/tsconfig.json -------------------------------------------------------------------------------- /Calling/tsconfig.preprocess.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/communication-services-web-calling-hero/HEAD/Calling/tsconfig.preprocess.json -------------------------------------------------------------------------------- /Calling/webpack.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/communication-services-web-calling-hero/HEAD/Calling/webpack.config.js -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/communication-services-web-calling-hero/HEAD/LICENSE.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/communication-services-web-calling-hero/HEAD/README.md -------------------------------------------------------------------------------- /SECURITY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/communication-services-web-calling-hero/HEAD/SECURITY.md -------------------------------------------------------------------------------- /Server/.eslintignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/communication-services-web-calling-hero/HEAD/Server/.eslintignore -------------------------------------------------------------------------------- /Server/.eslintrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/communication-services-web-calling-hero/HEAD/Server/.eslintrc.js -------------------------------------------------------------------------------- /Server/.prettierignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/communication-services-web-calling-hero/HEAD/Server/.prettierignore -------------------------------------------------------------------------------- /Server/.prettierrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/communication-services-web-calling-hero/HEAD/Server/.prettierrc -------------------------------------------------------------------------------- /Server/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/communication-services-web-calling-hero/HEAD/Server/LICENSE -------------------------------------------------------------------------------- /Server/appsettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/communication-services-web-calling-hero/HEAD/Server/appsettings.json -------------------------------------------------------------------------------- /Server/bin/www.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/communication-services-web-calling-hero/HEAD/Server/bin/www.ts -------------------------------------------------------------------------------- /Server/dist/web.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/communication-services-web-calling-hero/HEAD/Server/dist/web.config -------------------------------------------------------------------------------- /Server/jest.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/communication-services-web-calling-hero/HEAD/Server/jest.config.js -------------------------------------------------------------------------------- /Server/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/communication-services-web-calling-hero/HEAD/Server/package-lock.json -------------------------------------------------------------------------------- /Server/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/communication-services-web-calling-hero/HEAD/Server/package.json -------------------------------------------------------------------------------- /Server/src/app.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/communication-services-web-calling-hero/HEAD/Server/src/app.test.ts -------------------------------------------------------------------------------- /Server/src/app.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/communication-services-web-calling-hero/HEAD/Server/src/app.ts -------------------------------------------------------------------------------- /Server/src/azureDeployExistingResource.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/communication-services-web-calling-hero/HEAD/Server/src/azureDeployExistingResource.test.ts -------------------------------------------------------------------------------- /Server/src/lib/chat/moderator.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/communication-services-web-calling-hero/HEAD/Server/src/lib/chat/moderator.ts -------------------------------------------------------------------------------- /Server/src/lib/chat/userIdToUserConfigMap.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/communication-services-web-calling-hero/HEAD/Server/src/lib/chat/userIdToUserConfigMap.ts -------------------------------------------------------------------------------- /Server/src/lib/envHelper.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/communication-services-web-calling-hero/HEAD/Server/src/lib/envHelper.ts -------------------------------------------------------------------------------- /Server/src/lib/identityClient.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/communication-services-web-calling-hero/HEAD/Server/src/lib/identityClient.ts -------------------------------------------------------------------------------- /Server/src/routes/addUser.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/communication-services-web-calling-hero/HEAD/Server/src/routes/addUser.ts -------------------------------------------------------------------------------- /Server/src/routes/addUserToRoom.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/communication-services-web-calling-hero/HEAD/Server/src/routes/addUserToRoom.ts -------------------------------------------------------------------------------- /Server/src/routes/createRoom.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/communication-services-web-calling-hero/HEAD/Server/src/routes/createRoom.ts -------------------------------------------------------------------------------- /Server/src/routes/createThread.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/communication-services-web-calling-hero/HEAD/Server/src/routes/createThread.ts -------------------------------------------------------------------------------- /Server/src/routes/getEndpointUrl.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/communication-services-web-calling-hero/HEAD/Server/src/routes/getEndpointUrl.ts -------------------------------------------------------------------------------- /Server/src/routes/issueToken.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/communication-services-web-calling-hero/HEAD/Server/src/routes/issueToken.ts -------------------------------------------------------------------------------- /Server/src/routes/refreshToken.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/communication-services-web-calling-hero/HEAD/Server/src/routes/refreshToken.ts -------------------------------------------------------------------------------- /Server/src/routes/userConfig.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/communication-services-web-calling-hero/HEAD/Server/src/routes/userConfig.ts -------------------------------------------------------------------------------- /Server/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/communication-services-web-calling-hero/HEAD/Server/tsconfig.json -------------------------------------------------------------------------------- /Server/web.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/communication-services-web-calling-hero/HEAD/Server/web.config -------------------------------------------------------------------------------- /Server/webpack.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/communication-services-web-calling-hero/HEAD/Server/webpack.config.ts -------------------------------------------------------------------------------- /deploy/azuredeploy.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/communication-services-web-calling-hero/HEAD/deploy/azuredeploy.json -------------------------------------------------------------------------------- /deploy/azuredeployexistingresource.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/communication-services-web-calling-hero/HEAD/deploy/azuredeployexistingresource.json -------------------------------------------------------------------------------- /docs/dependency-management-guide.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/communication-services-web-calling-hero/HEAD/docs/dependency-management-guide.md -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/communication-services-web-calling-hero/HEAD/package.json --------------------------------------------------------------------------------