updated Service providers

This commit is contained in:
2025-04-05 22:54:05 +03:00
parent fa4df11323
commit 60507c87e0
21 changed files with 1134 additions and 183 deletions

View File

@@ -0,0 +1,30 @@
ToDo List:
Redis Items:
Internal serves from Class inside API:
- [ ] Save Events activities as [
{"endpoint_code-UUID1": ["event-UUID1", "event-UUID2", "event-UUID3"]},
{"endpoint_code-UUID2": ["event-UUID4", "event-UUID5", "event-UUID6"]}
]
- [ ] Save Application activities as [
{"app1": ["appCode-UUID1", "appCode-UUID2", "appCode-UUID3"]},
{"app2": ["appCode-UUID4", "appCode-UUID5", "appCode-UUID6"]}
]
Serve Only from Redis:
- [] Endpoint: "authentication/page/valid"
send data: {"page": "app1"}
result: {"page": "appCode-UUID4"}
Client side Frontend:
On Redirect [send=> authentication/page/valid]
Retrieve available application UUIDs from API
Redirect to related page with UUID
{
"appCode-UUID1": App1.tsx
}