├── .gitignore ├── CODE_OF_CONDUCT.md ├── LICENSE ├── README.md ├── SECURITY.md ├── SUPPORT.md └── Solution ├── Deployment ├── Config │ ├── Guests.xml │ ├── api_connections.json │ ├── logicapp_domain-check.json │ ├── logicapp_request-a-guest.json │ ├── logicapp_teams-approval.json │ ├── manifest.json │ └── request-a-guest-config.json ├── Scripts │ └── runbook_domain-check.ps1 └── request-a-guest-deploy.ps1 └── PowerApp └── Request-a-guest.zip /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/microsoft-teams-apps-request-a-guest/HEAD/.gitignore -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/microsoft-teams-apps-request-a-guest/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/microsoft-teams-apps-request-a-guest/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/microsoft-teams-apps-request-a-guest/HEAD/README.md -------------------------------------------------------------------------------- /SECURITY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/microsoft-teams-apps-request-a-guest/HEAD/SECURITY.md -------------------------------------------------------------------------------- /SUPPORT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/microsoft-teams-apps-request-a-guest/HEAD/SUPPORT.md -------------------------------------------------------------------------------- /Solution/Deployment/Config/Guests.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/microsoft-teams-apps-request-a-guest/HEAD/Solution/Deployment/Config/Guests.xml -------------------------------------------------------------------------------- /Solution/Deployment/Config/api_connections.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/microsoft-teams-apps-request-a-guest/HEAD/Solution/Deployment/Config/api_connections.json -------------------------------------------------------------------------------- /Solution/Deployment/Config/logicapp_domain-check.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/microsoft-teams-apps-request-a-guest/HEAD/Solution/Deployment/Config/logicapp_domain-check.json -------------------------------------------------------------------------------- /Solution/Deployment/Config/logicapp_request-a-guest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/microsoft-teams-apps-request-a-guest/HEAD/Solution/Deployment/Config/logicapp_request-a-guest.json -------------------------------------------------------------------------------- /Solution/Deployment/Config/logicapp_teams-approval.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/microsoft-teams-apps-request-a-guest/HEAD/Solution/Deployment/Config/logicapp_teams-approval.json -------------------------------------------------------------------------------- /Solution/Deployment/Config/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/microsoft-teams-apps-request-a-guest/HEAD/Solution/Deployment/Config/manifest.json -------------------------------------------------------------------------------- /Solution/Deployment/Config/request-a-guest-config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/microsoft-teams-apps-request-a-guest/HEAD/Solution/Deployment/Config/request-a-guest-config.json -------------------------------------------------------------------------------- /Solution/Deployment/Scripts/runbook_domain-check.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/microsoft-teams-apps-request-a-guest/HEAD/Solution/Deployment/Scripts/runbook_domain-check.ps1 -------------------------------------------------------------------------------- /Solution/Deployment/request-a-guest-deploy.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/microsoft-teams-apps-request-a-guest/HEAD/Solution/Deployment/request-a-guest-deploy.ps1 -------------------------------------------------------------------------------- /Solution/PowerApp/Request-a-guest.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/microsoft-teams-apps-request-a-guest/HEAD/Solution/PowerApp/Request-a-guest.zip --------------------------------------------------------------------------------