chore(docs): update roadmap and add Sync Fix report, remove desktop-app from compose config

- Marked Phase 3 of roadmap as complete and adjusted next steps.
- Added detailed report documenting the Sync type mismatch resolution.
- Commented out the `desktop-app` service from `dc-gui.yaml`.
This commit is contained in:
2026-02-01 18:48:00 +01:00
parent aa0c07904f
commit f00cc7681f
5 changed files with 61 additions and 30 deletions
@@ -287,7 +287,7 @@ class AuthTokenManager {
private fun extractPermissionsFromJson(jsonString: String): List<String>? {
return try {
// Simple regex to find a permissions array
val permissionsRegex = """"permissions":\s*\[(.*?)]""".toRegex()
val permissionsRegex = """"permissions":\s*\[(.*?)\]""".toRegex()
val match = permissionsRegex.find(jsonString)
match?.let { matchResult ->