backups: the get route was accidentally removed

This commit is contained in:
Girish Ramakrishnan
2025-07-25 11:49:13 +02:00
parent 3f07bb5c3a
commit 59aaabecc7
7 changed files with 30 additions and 18 deletions
+1 -1
View File
@@ -36,7 +36,7 @@ describe('Backups API', function () {
const response = await superagent.get(`${serverUrl}/api/v1/backups/bad_id`)
.query({ access_token: owner.token })
.ok(() => true);
expect(response.status).to.equal(400);
expect(response.status).to.equal(404);
});
it('can get valid id', async function () {