From ec3f4287e746568e08785c1e961caebac475024b Mon Sep 17 00:00:00 2001 From: = Date: Mon, 24 Oct 2022 13:25:21 -0700 Subject: [PATCH] Add david to authorized users --- lib.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib.ts b/lib.ts index e925a73..934621c 100644 --- a/lib.ts +++ b/lib.ts @@ -1,4 +1,4 @@ -const AuthorizedUsers = ["Eli"]; +const AuthorizedUsers = ["Eli", "David"]; function isValidUser(name: string): boolean { if (AuthorizedUsers.includes(name)) {