Fix Mini fork leftovers in POS config
Deploy Ladill POS / deploy (push) Successful in 59s

After an auto-logout, silent re-auth fails with login_required and
SsoLoginController@callback redirects to config('ladill.marketing_url') — which
still defaulted to https://ladill.com/products/mini, dumping POS users on Mini's
product page. Point ladill.product_slug/marketing_url at POS.

Also fix the identity service key (config/identity.php + services.ladill_identity
read IDENTITY_API_KEY_MINI; POS provisions IDENTITY_API_KEY_POS) and tidy the
remaining Mini defaults (app.name, ladill_sso redirect, mobile-topbar app_name).

Co-Authored-By: Claude Opus 4.8 <noreply@anthropic.com>
This commit is contained in:
isaacclad
2026-06-25 06:00:32 +00:00
co-authored by Claude Opus 4.8
parent e9d483394c
commit 1bbc9490f1
5 changed files with 7 additions and 7 deletions
+2 -2
View File
@@ -1,6 +1,6 @@
<?php
return [
'product_slug' => 'mini',
'marketing_url' => env('LADILL_MARKETING_URL', 'https://ladill.com/products/mini'),
'product_slug' => 'pos',
'marketing_url' => env('LADILL_MARKETING_URL', 'https://ladill.com/products/pos'),
];