From ec80952ad96747e06e694c1fff057e1e968bc234 Mon Sep 17 00:00:00 2001 From: Ben Visness Date: Wed, 22 Sep 2021 23:57:14 -0500 Subject: [PATCH] Automatically approve users for now --- src/website/auth.go | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/website/auth.go b/src/website/auth.go index 5b208fd..2ba4810 100644 --- a/src/website/auth.go +++ b/src/website/auth.go @@ -372,7 +372,8 @@ func EmailConfirmationSubmit(c *RequestContext) ResponseData { SET status = $1 WHERE id = $2 `, - models.UserStatusConfirmed, + // models.UserStatusConfirmed, + models.UserStatusApproved, // TODO: Change this back to Confirmed after the jam. validationResult.User.ID, ) if err != nil {