mirror of
https://github.com/overleaf/overleaf.git
synced 2025-04-06 17:12:06 +00:00
Add mock for the unlink dropbox endpoint
GitOrigin-RevId: 41293a2cb6ab3cf87d40717e43c0f4888df89fe1
This commit is contained in:
parent
a099f82c34
commit
bfc6ac8745
1 changed files with 7 additions and 0 deletions
|
@ -7,8 +7,15 @@ class MockThirdPartyDataStoreApi extends AbstractMockApi {
|
|||
res.sendStatus(200)
|
||||
}
|
||||
|
||||
unlinkUser(req, res) {
|
||||
res.sendStatus(200)
|
||||
}
|
||||
|
||||
applyRoutes() {
|
||||
this.app.delete('/user/:user_id', (req, res) => this.deleteUser(req, res))
|
||||
this.app.delete('/user/:user_id/dropbox', (req, res) =>
|
||||
this.unlinkUser(req, res)
|
||||
)
|
||||
}
|
||||
}
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue