Implement authentication, waitlist, and logging upgrades

This commit is contained in:
Remi
2025-09-16 17:28:34 +02:00
parent e155434b57
commit fe66a4c04c
29 changed files with 1847 additions and 64 deletions

View File

@@ -477,7 +477,12 @@ export default function useCommunicationsEngine() {
}
function exposeCtx() {
return { variables: variables.value, flags: flags.value }
return {
...variables.value,
...flags.value,
variables: variables.value,
flags: flags.value,
}
}
function exposeCtxFlat() {
@@ -559,6 +564,7 @@ export default function useCommunicationsEngine() {
nextCandidates,
activeFrequency,
communicationLog: readonly(communicationLog),
clearCommunicationLog: () => { communicationLog.value = [] },
// pm_alt.vue Integration
flightContext: readonly(flightContext),