From 71d5f235c9a50c13ceda65520773437149924adc Mon Sep 17 00:00:00 2001 From: Vortrex <3858226+VortrexFTW@users.noreply.github.com> Date: Fri, 8 Jan 2021 00:15:40 -0600 Subject: [PATCH] Add acct auth methods --- scripts/server/const.js | 10 +++++++++- 1 file changed, 9 insertions(+), 1 deletion(-) diff --git a/scripts/server/const.js b/scripts/server/const.js index a72a6f75..d1496dfc 100644 --- a/scripts/server/const.js +++ b/scripts/server/const.js @@ -197,4 +197,12 @@ const AG_FORENSICS_BODY = 3; // Body. A dead body lol const AG_FORENSICS_HAIR = 4; // Hair. Automatically applied to const AG_FORENSICS_SWEAT = 5; // Sweat. Automatically applied to clothing when worn const AG_FORENSICS_SALIVA = 6; // Saliva. Automatically applied to drinks when drank -const AG_FORENSICS_BULLETCASINGS = 7; // Bullet casings. Automatically dropped when fired from a weapon except when used in a vehicle (driveby) \ No newline at end of file +const AG_FORENSICS_BULLETCASINGS = 7; // Bullet casings. Automatically dropped when fired from a weapon except when used in a vehicle (driveby) + +// Account Authentication Methods +const AG_ACCT_AUTHMETHOD_NONE = 0; +const AG_ACCT_AUTHMETHOD_EMAIL = 1; +const AG_ACCT_AUTHMETHOD_PHONENUM = 2; +const AG_ACCT_AUTHMETHOD_2FA = 3; +const AG_ACCT_AUTHMETHOD_PEBBLE = 4; +const AG_ACCT_AUTHMETHOD_PHONEAPP = 5; \ No newline at end of file