| 440 | } |
| 441 | |
| 442 | QVariantList Backend::getManagedApps() |
| 443 | { |
| 444 | QVariantList list; |
| 445 | for (const auto &app : m_apps) { |
| 446 | QVariantMap m; |
| 447 | m["appId"] = app.appId; |
| 448 | m["name"] = app.name; |
| 449 | list.append(m); |
| 450 | } |
| 451 | return list; |
| 452 | } |
| 453 | |
| 454 | QVariantList Backend::getAppDetails() |
| 455 | { |
nothing calls this directly
no outgoing calls
no test coverage detected