MCPcopy Index your code
hub / github.com/CodebuffAI/codebuff / logout

Function logout

cli/src/utils/codebuff-api.ts:536–543  ·  view source on GitHub ↗
(req: LogoutRequest = {})

Source from the content-addressed store, hash-verified

534 },
535
536 logout(req: LogoutRequest = {}): Promise<ApiResponse<void>> {
537 // Auth is sent via Authorization header (includeAuth defaults to true)
538 return request<void>('POST', '/api/auth/cli/logout', {
539 userId: req.userId,
540 fingerprintId: req.fingerprintId,
541 fingerprintHash: req.fingerprintHash,
542 })
543 },
544
545 feedback(req: FeedbackRequest): Promise<ApiResponse<FeedbackResponse>> {
546 return request<FeedbackResponse>('POST', '/api/v1/feedback', req, {

Callers

nothing calls this directly

Calls 1

requestFunction · 0.70

Tested by

no test coverage detected