Environment & Bootstrap Stability: Fix Ghost Account and Modernize PWA Manifest
- Resolved 'Ghost Account' warning by updating layout hydration to align with V3 ID Vision (account_id vs account_id_random). - Improved site lookup reliability using Agent API Key and structured EQ filters for exact FQDN matching (including ports). - Modernized PWA manifest with maskable icons (PNG/WebP), app shortcuts, and unique installation IDs. - Implemented automatic Electron 'Native' mode detection in root layout. - Fixed stale API URLs in Launcher native file download logic. - Added V3 migration documentation and JWT verification test scripts.
This commit is contained in:
@@ -489,7 +489,7 @@
|
||||
|
||||
// WARNING: This function returns a list. We only want the first one. There should be no more than 1 record returned.
|
||||
// WARNING: This function returns a list. We only want the first one. There should be no more than 1 record returned.
|
||||
// We use enabled: 'all' and hidden: 'all' to ensure we find the person record even if
|
||||
// We use enabled: 'all' and hidden: 'all' to ensure we find the person record even if
|
||||
// technical fields like 'hide' are NULL or the record is temporarily disabled.
|
||||
ae_promises['person'] = core_func
|
||||
.load_ae_obj_li__person({
|
||||
@@ -596,7 +596,7 @@
|
||||
|
||||
// WARNING: This function returns a list. We only want the first one. There should be no more than 1 record returned.
|
||||
// WARNING: This function returns a list. We only want the first one. There should be no more than 1 record returned.
|
||||
// We use enabled: 'all' and hidden: 'all' to ensure we find the person record even if
|
||||
// We use enabled: 'all' and hidden: 'all' to ensure we find the person record even if
|
||||
// technical fields like 'hide' are NULL or the record is temporarily disabled.
|
||||
ae_promises['person'] = core_func
|
||||
.load_ae_obj_li__person({
|
||||
@@ -833,7 +833,7 @@
|
||||
class="top-center bg-white dark:bg-gray-800 text-gray-800 dark:text-gray-200 rounded-lg border-gray-200 dark:border-gray-700 divide-gray-200 dark:divide-gray-700 shadow-md relative mx-auto w-full divide-y"
|
||||
>
|
||||
<div class="modal-box flex flex-col gap-2 items-center justify-center">
|
||||
<!-- If the user is a global Manger or Super then they can change the password for any user. Otherwise, they can only change their own password. Show email address field for a quick lookup to get the user.id. -->
|
||||
<!-- If the user is a global Manager or Super then they can change the password for any user. Otherwise, they can only change their own password. Show email address field for a quick lookup to get the user.id. -->
|
||||
<div class="flex flex-col flex-wrap gap-2">
|
||||
<span class="text-sm text-gray-500">
|
||||
Your Username: {$ae_loc?.user?.username ?? '-- not set --'}
|
||||
|
||||
Reference in New Issue
Block a user