Add todo for configurable groups key

This commit is contained in:
Joel Speed
2019-01-28 11:54:10 +00:00
parent 94bee18f6b
commit 554870cea0

@@ -231,6 +231,7 @@ func (c *googleConnector) getGroups(email string) ([]string, error) {
var userGroups []string
for _, group := range groupsList.Groups {
// TODO (joelspeed): Make desried group key configurable
userGroups = append(userGroups, group.Email)
}