Add invitations and joining

This commit is contained in:
Aslan 2025-12-24 05:18:01 -05:00
parent 66b25d5135
commit d1685fde77
4 changed files with 131 additions and 2 deletions

View file

@ -10,3 +10,16 @@ Returns a session with id = {id}
"userId": "string"
}
```
## DELETE /api/v1/session/{id}
*Requires an authentication header*
Revokes a session with id = {id}
### Response:
```json
{
"id": "string",
"userId": "string",
}
```