| 1104 | } |
| 1105 | |
| 1106 | void Backend::deleteCloudAppData(uint appId) |
| 1107 | { |
| 1108 | QString token = readAccessToken(); |
| 1109 | if (token.isEmpty()) return; |
| 1110 | |
| 1111 | if (m_providerName == "gdrive") { |
| 1112 | deleteGoogleDriveAppData(appId, token); |
| 1113 | } else if (m_providerName == "onedrive") { |
| 1114 | deleteOneDriveAppData(appId, token); |
| 1115 | } |
| 1116 | } |
| 1117 | |
| 1118 | void Backend::deleteGoogleDriveAppData(uint appId, const QString &token) |
| 1119 | { |
nothing calls this directly
no outgoing calls
no test coverage detected