From 14008cee0793657087f097aae45e44ccd37ccc17 Mon Sep 17 00:00:00 2001 From: Jesse Elliott Date: Wed, 8 Apr 2026 11:20:52 -0400 Subject: [PATCH] Fix config order Signed-off-by: Jesse Elliott --- UnityAuth/src/main/resources/application.yml | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/UnityAuth/src/main/resources/application.yml b/UnityAuth/src/main/resources/application.yml index d0b14b0..100ea27 100644 --- a/UnityAuth/src/main/resources/application.yml +++ b/UnityAuth/src/main/resources/application.yml @@ -16,9 +16,6 @@ micronaut: access: - isAnonymous() authentication: bearer -unity: - auth: - internal-token: ${UNITY_AUTH_INTERNAL_TOKEN} server: cors: enabled: true @@ -33,3 +30,7 @@ flyway: datasources: default: enabled: true + +unity: + auth: + internal-token: ${UNITY_AUTH_INTERNAL_TOKEN}