From da45adcb6ee11eabbfb07616e05624b07ea90798 Mon Sep 17 00:00:00 2001
From: Eric Buth <ericdotbuth@gmail.com>
Date: Sun, 17 Dec 2017 12:08:19 -0500
Subject: [PATCH] email scope only allows access to a user's email address

---
 server/templates.go | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/server/templates.go b/server/templates.go
index 87567e40..ab9e5802 100644
--- a/server/templates.go
+++ b/server/templates.go
@@ -167,7 +167,7 @@ func loadTemplates(c webConfig, templatesDir string) (*templates, error) {
 var scopeDescriptions = map[string]string{
 	"offline_access": "Have offline access",
 	"profile":        "View basic profile information",
-	"email":          "View your email",
+	"email":          "View your email address",
 }
 
 type connectorInfo struct {
-- 
GitLab