A social knowledge tool for researchers built on ATProto
45
fork

Configure Feed

Select the types of activity you want to include in your feed.

make logout an authed only method in api client

+3
+3
src/webapp/api-client/clients/UserClient.ts
··· 71 71 } 72 72 73 73 async logout(): Promise<{ success: boolean; message: string }> { 74 + if (!this.tokenManager) { 75 + throw new Error('TokenManager is required for logout'); 76 + } 74 77 const refreshToken = await this.tokenManager.getRefreshToken(); 75 78 return this.request<{ success: boolean; message: string }>( 76 79 'POST',