From 63cf535ebbd9c16d9d461d7337f46eb77f9666f2 Mon Sep 17 00:00:00 2001 From: Daniel Hougaard Date: Sun, 15 Sep 2024 19:52:13 +0400 Subject: [PATCH] feat: platform-level actor for logs --- backend/src/services/auth/auth-type.ts | 1 + 1 file changed, 1 insertion(+) diff --git a/backend/src/services/auth/auth-type.ts b/backend/src/services/auth/auth-type.ts index 9210093ab..87522a803 100644 --- a/backend/src/services/auth/auth-type.ts +++ b/backend/src/services/auth/auth-type.ts @@ -34,6 +34,7 @@ export enum AuthMode { } export enum ActorType { // would extend to AWS, Azure, ... + PLATFORM = "platform", // Useful for when we want to perform logging on automated actions such as integration syncs. USER = "user", // userIdentity SERVICE = "service", IDENTITY = "identity",