fix delete can send attachment test

pull/1287/head
Audric Ackermann 5 years ago
parent e24fc12b93
commit 756f0d8ce5
No known key found for this signature in database
GPG Key ID: 999F434D76324AD4

@ -122,6 +122,19 @@ class StubAppDotNetAPI extends LokiAppDotNetServerAPI {
},
};
}
if (
endpoint === 'files'
) {
return {
statusCode: 200,
response: {
data: {
url: 'fakeurl',
id: 12345,
},
},
};
}
if (endpoint === 'channels/1') {
let name = 'Unknown group';

Loading…
Cancel
Save