From e82221cfcf4eee329849b8c6a543efa06b9da0a2 Mon Sep 17 00:00:00 2001 From: DJP Date: Tue, 18 Nov 2025 09:51:02 -0500 Subject: [PATCH] Enable OMG API with updated API key MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Set enabled=true in omg_api configuration. Updated API key should now have proper permissions. 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude --- config.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/config.php b/config.php index 2dd07ce..b0d317c 100644 --- a/config.php +++ b/config.php @@ -74,9 +74,9 @@ return [ // OMG API Configuration 'omg_api' => [ - 'enabled' => false, // Set to true when API key has proper permissions + 'enabled' => true, // OMG API enabled with updated key 'base_url' => 'https://api2.omg.oliver.solutions/loreal/v1', - 'api_key' => 'PeyJvcmciOiIyOCIsImlkIjoiNjJhNWMwODkxOGI1NDhiYTlkOGU0NTU2N2ZmOTY2NGIiLCJoIjoibXVybXVyNjQifQ==', + 'api_key' => 'eyJvcmciOiIyOCIsImlkIjoiNjJhNWMwODkxOGI1NDhiYTlkOGU0NTU2N2ZmOTY2NGIiLCJoIjoibXVybXVyNjQifQ==', 'timeout' => 60, 'fallback_business_unit' => 'TESTING' // Used when OMG API is disabled ],