Skip to content

Commit

Permalink
Update manifest.json
Browse files Browse the repository at this point in the history
  • Loading branch information
vishrutshuklaMSFT authored Jan 22, 2020
1 parent 81200f6 commit fa60207
Showing 1 changed file with 16 additions and 39 deletions.
55 changes: 16 additions & 39 deletions Manifest/manifest.json
Original file line number Diff line number Diff line change
@@ -1,53 +1,31 @@
{
"$schema": "https://developer.microsoft.com/en-us/json-schemas/teams/v1.5/MicrosoftTeams.schema.json",
"manifestVersion": "1.5",
"version": "1.0",
"version": "1.0.0",
"id": "xxxxxxxx-xxxx-xxxx-xxxx-xxxxxxxx",
"packageName": "your-qbot-package-name",
"packageName": "qbot",
"developer": {
"name": "Anything unique",
"websiteUrl": "https://github.com/unsw-edu-au/QBot",
"privacyUrl": "https://github.com/unsw-edu-au/QBot",
"termsOfUseUrl": "https://github.com/unsw-edu-au/QBot"
"name": "UNSW Sydney",
"websiteUrl": "https://www.unsw.edu.au/QBot",
"privacyUrl": "https://www.unsw.edu.au/QBot/privacy",
"termsOfUseUrl": "https://www.unsw.edu.au/QBot/tou"
},
"icons": {
"outline": "qbot.png",
"color": "qbot.png"
"outline": "Outline.png",
"color": "Color.png"
},
"name": {
"short": "Question",
"full": "Question"
"full": "Question - The Community Learning App"
},
"description": {
"short": "QBot",
"full": "QBot keeps track of answered and unanswered questions, sends notifications to tutors and teachers in charge, and dynamically constructs its own knowledge database on the subject to help suggest answers in future. Just tag @question in the conversations tab of your class Team."
"full": "QBot keeps track of answered and unanswered questions, sends notifications to tutors and teachers in charge, and dynamically constructs its own knowledge database on the subject to help suggest answers in future. Just tag @Question in the conversations tab of your class team."
},
"accentColor": "#3F487F",
"composeExtensions": [
{
"botId": "xxxxxxxx-xxxx-xxxx-xxxx-xxxxxxxx",
"canUpdateConfiguration": true,
"commands": [
{
"id": "SelectAnswer",
"description": "Select an answer",
"title": "Select answer",
"type": "action",
"context": [ "message" ],
"fetchTask": true,
"parameters": [
{
"name": "SelectAnswer",
"title": "Select Answer"
}
]
}
]
}
],
"configurableTabs": [
"accentColor": "#6264A7",
"configurableTabs": [
{
"configurationUrl": "https://qbot-questions-tab.azurewebsites.net/config?upn={upn}&tid={tid}&gid={gid}&cname={channelName}",
"configurationUrl": "https://qbot-questions-tab.azurewebsites.net/config?upn={loginHint}&tid={tid}&gid={groupId}&cname={channelName}",
"canUpdateConfiguration": true,
"scopes": [
"team"
Expand All @@ -58,16 +36,15 @@
{
"botId": "xxxxxxxx-xxxx-xxxx-xxxx-xxxxxxxx",
"scopes": [
"team",
"personal"
"team"
]
}
],
"staticTabs": [
{
"entityId": "DashboardTab",
"name": "Dashboard",
"contentUrl": "https://qbot-dashboard-tab.azurewebsites.net/home?upn={upn}&tid={tid}&gid={groupId}&uid={userObjectId}",
"contentUrl": "https://qbot-dashboard-tab.azurewebsites.net/home?upn={loginHint}&tid={tid}&gid={groupId}&uid={userObjectId}",
"scopes": [ "personal" ]
}
],
Expand All @@ -76,4 +53,4 @@
"messageTeamMembers"
],
"validDomains": [ "qbot-dashboard-tab.azurewebsites.net", "qbot-questions-tab.azurewebsites.net", "qbot-api.azurewebsites.net" ]
}
}

0 comments on commit fa60207

Please sign in to comment.