Created
June 23, 2020 10:06
-
-
Save SibeeshVenu/e68fc11f0e32e54fabb4c2b6a5c51dda to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<head> | |
<script src='https://statics.teams.cdn.office.net/sdk/v1.6.0/js/MicrosoftTeams.min.js'></script> | |
</head> | |
<body> | |
<script> | |
microsoftTeams.initialize(); | |
microsoftTeams.settings.registerOnSaveHandler((saveEvent) => { | |
microsoftTeams.settings.setSettings({ | |
websiteUrl: "https://mlestimateteam.azurewebsites.net", | |
contentUrl: "https://mlestimateteam.azurewebsites.net", | |
entityId: "mlestimateentityid", | |
suggestedDisplayName: "ml Estimate" | |
}); | |
saveEvent.notifySuccess(); | |
}); | |
microsoftTeams.settings.setValidityState(true); | |
</script> | |
</body> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment