From 5da30d572f37674d22991ed603387e4606a79f83 Mon Sep 17 00:00:00 2001 From: Oliver Akins Date: Sun, 13 Mar 2022 18:30:46 -0600 Subject: [PATCH] Add a Forbidden status --- common/src/enums/Status.ts | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/common/src/enums/Status.ts b/common/src/enums/Status.ts index 73fdf94..f6918be 100644 --- a/common/src/enums/Status.ts +++ b/common/src/enums/Status.ts @@ -13,6 +13,12 @@ export enum Status { */ OutOfDate = 401, + /** + * The resource that is being requested cannot be accessed at the current + * point in time for some reason. Check the "message" for additional details. + */ + Forbidden = 403, + /** * Something in the request couldn't be found. Check the "message" for * additional information.