From 07340775eb957ac0dd9c9a5e0159e2934218bb1e Mon Sep 17 00:00:00 2001 From: Arzumify Date: Wed, 2 Oct 2024 18:31:57 +0100 Subject: [PATCH] Made the oauth service actually report it's activation Signed-off-by: Arzumify --- services-src/auth/main.go | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/services-src/auth/main.go b/services-src/auth/main.go index fcc039f..81d2f06 100644 --- a/services-src/auth/main.go +++ b/services-src/auth/main.go @@ -1805,4 +1805,13 @@ func Main(information library.ServiceInitializationInformation) { } } }() + + // Report a successful activation + information.Outbox <- library.InterServiceMessage{ + ServiceID: ServiceInformation.ServiceID, + ForServiceID: uuid.MustParse("00000000-0000-0000-0000-000000000001"), // Activation service + MessageType: 0, + SentAt: time.Now(), + Message: true, + } }