**Description:** Allow users to securely log out by invalidating their refresh token. **Tasks:** - [ ] Create `POST /api/auth/logout` - [ ] Require authentication - [ ] Clear the stored refresh token from the database - [ ] Return `200 OK` **Acceptance Criteria:** After logout, using the refresh token returns `403`. ---
Description:
Allow users to securely log out by invalidating their refresh token.
Tasks:
POST /api/auth/logout200 OKAcceptance Criteria:
After logout, using the refresh token returns
403.