MCPcopy Create free account
hub / github.com/Selectively11/CloudRedirect / deleteCloudAppData

Method deleteCloudAppData

ui-linux/src/backend.cpp:1106–1116  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

1104}
1105
1106void 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
1118void Backend::deleteGoogleDriveAppData(uint appId, const QString &token)
1119{

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected