From 68f43985ade115f1c0de01d1b3f21a2e2c3ef239 Mon Sep 17 00:00:00 2001
From: Wim <wim@42.be>
Date: Thu, 16 Jan 2020 21:16:35 +0100
Subject: [PATCH] Add scopes again

---
 bridge/msteams/msteams.go | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

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 {