summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorWim <wim@42.be>2020-01-16 21:16:35 +0100
committerWim <wim@42.be>2020-03-01 22:19:33 +0100
commit68f43985ade115f1c0de01d1b3f21a2e2c3ef239 (patch)
tree585258816f11843763122aad8c3350d42976432f
parent915ca8f817e0a9000d546766515e1ec4221d9d43 (diff)
downloadmatterbridge-msglm-68f43985ade115f1c0de01d1b3f21a2e2c3ef239.tar.gz
matterbridge-msglm-68f43985ade115f1c0de01d1b3f21a2e2c3ef239.tar.bz2
matterbridge-msglm-68f43985ade115f1c0de01d1b3f21a2e2c3ef239.zip
Add scopes again
-rw-r--r--bridge/msteams/msteams.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/bridge/msteams/msteams.go b/bridge/msteams/msteams.go
index f6e556fe..da0e31ff 100644
--- a/bridge/msteams/msteams.go
+++ b/bridge/msteams/msteams.go
@@ -19,7 +19,7 @@ import (
"golang.org/x/oauth2"
)
-var defaultScopes = []string{} //"openid", "profile", "offline_access", "Group.Read.All", "Group.ReadWrite.All"}
+var defaultScopes = []string{"openid", "profile", "offline_access", "Group.Read.All", "Group.ReadWrite.All"}
var attachRE = regexp.MustCompile(`<attachment id=.*?attachment>`)
type Bmsteams struct {