Skip to content

Commit

Permalink
TEOC v2.0 changes (#95)
Browse files Browse the repository at this point in the history
* TEOC v2.0 changes

* TEOC - v2.0 changes

* TEOC v2.0 changes
  • Loading branch information
v-royavinash committed May 3, 2023
1 parent 2edf7b9 commit 4bd50f7
Show file tree
Hide file tree
Showing 94 changed files with 100,771 additions and 58,005 deletions.
6 changes: 3 additions & 3 deletions Deployment/appPackage/manifest.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"$schema": "https://developer.microsoft.com/en-us/json-schemas/teams/v1.11/MicrosoftTeams.schema.json",
"manifestVersion": "1.11",
"version": "1.0",
"version": "2.0",
"id": "bef61400-db9b-41d4-a617-403deb7bbe77",
"packageName": "com.microsoft.teams.extension",
"developer": {
Expand All @@ -19,7 +19,7 @@
"full": "Microsoft Teams Emergency Operations Center"
},
"description": {
"short": "Microsoft Teams Emergency Operation Center",
"short": "Microsoft Teams Emergency Operations Center",
"full": "The Microsoft Teams Emergency Operations Center (TEOC) solution template leverages the power of the Microsoft 365 platform to centralize incident response, information sharing and field communications using powerful services like Microsoft Lists, SharePoint and more. An open-source solution supported by Microsoft it provides core functionality out of the box or can be extended to meet specific agency requirements."
},
"accentColor": "#FFFFFF",
Expand All @@ -40,7 +40,7 @@
"entityId": "index",
"name": "Teams EOC",
"contentUrl": "https://<<appDomain>>/index.html#/tab",
"websiteUrl": "https://<<appDomain>>/index.html#/tab",
"websiteUrl": "https://<<websiteUrl>>",
"scopes": [
"personal"
]
Expand Down
25 changes: 24 additions & 1 deletion Deployment/azuredeploy.json
Original file line number Diff line number Diff line change
Expand Up @@ -45,6 +45,14 @@
},
"defaultValue": "https://login.microsoftonline.com"
},
"GraphBaseUrl": {
"type": "string",
"minLength": 1,
"metadata": {
"description": "A default base url for a graph request"
},
"defaultValue": "https://graph.microsoft.com/"
},
"hostingPlanSku": {
"type": "string",
"allowedValues": [
Expand Down Expand Up @@ -304,6 +312,9 @@
},
"SharePointSiteName": {
"value": "[parameters('SharePointSiteName')]"
},
"GraphBaseUrl":{
"value": "[parameters('GraphBaseUrl')]"
}
},
"template": {
Expand Down Expand Up @@ -358,6 +369,13 @@
"metadata": {
"description": "Provide name for the sharepoint site that will be provisioned."
}
},
"GraphBaseUrl":{
"type": "string",
"minLength": 1,
"metadata": {
"description": "The default base url for graph request."
}
}
},
"variables": {
Expand All @@ -376,7 +394,8 @@
"authorizedClientApplicationIds": "[format('{0};{1};{2};{3};{4};{5}', variables('teamsMobileOrDesktopAppClientId'), variables('teamsWebAppClientId'), variables('officeWebAppClientId1'), variables('officeWebAppClientId2'), variables('outlookDesktopAppClientId'), variables('outlookWebAppClientId'))]",
"identifierURI": "[concat(parameters('baseResourceName'), '.azurewebsites.net')]",
"tabAppEndpoint": "[concat(parameters('baseResourceName'), '.azurewebsites.net')]",
"SharePointSiteName": "[parameters('SharePointSiteName')]"
"SharePointSiteName": "[parameters('SharePointSiteName')]",
"GraphBaseUrl": "[parameters('GraphBaseUrl')]"
},
"resources": [
{
Expand Down Expand Up @@ -458,6 +477,10 @@
{
"name": "REACT_APP_SHAREPOINT_SITE_NAME",
"value": "[parameters('SharePointSiteName')]"
},
{
"name": "REACT_APP_GRAPH_BASE_URL",
"value": "[parameters('GraphBaseUrl')]"
}
]
}
Expand Down
Loading

0 comments on commit 4bd50f7

Please sign in to comment.