From 460f8b85527202f5d1871e1bb505d49fc3167022 Mon Sep 17 00:00:00 2001
From: sarahmccuan <35535105+sarahmccuan@users.noreply.github.com>
Date: Sun, 31 May 2020 22:02:20 -0400
Subject: [PATCH] Bypass email confirmation for dev admin

---
 README.md | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/README.md b/README.md
index 2aeab409a..072063c2e 100644
--- a/README.md
+++ b/README.md
@@ -66,7 +66,7 @@ You can create the first user account in the application, which should be runnin
 to an admin account, run `rails c` for a console, followed by:
 
 ```ruby
-User.last.update(is_global_admin: true)
+User.last.update(confirmed_at: DateTime.now, is_global_admin: true)
 ```
 
 ## License
-- 
GitLab