@@ -283,16 +283,16 @@ export class WebAuthService extends EventEmitter<AuthServiceEvents> implements A
283283 await vscode . env . openExternal ( vscode . Uri . parse ( url ) )
284284 } catch ( error ) {
285285 const context = landingPageSlug ? ` (landing page: ${ landingPageSlug } )` : ""
286- this . log ( `[auth] Error initiating Roo Code Cloud auth${ context } : ${ error } ` )
287- throw new Error ( `Failed to initiate Roo Code Cloud authentication${ context } : ${ error } ` )
286+ this . log ( `[auth] Error initiating Zoo Code Cloud auth${ context } : ${ error } ` )
287+ throw new Error ( `Failed to initiate Zoo Code Cloud authentication${ context } : ${ error } ` )
288288 }
289289 }
290290
291291 /**
292- * Handle the callback from Roo Code Cloud
292+ * Handle the callback from Zoo Code Cloud
293293 *
294294 * This method is called when the user is redirected back to the extension
295- * after authenticating with Roo Code Cloud.
295+ * after authenticating with Zoo Code Cloud.
296296 *
297297 * @param code The authorization code from the callback
298298 * @param state The state parameter from the callback
@@ -309,7 +309,7 @@ export class WebAuthService extends EventEmitter<AuthServiceEvents> implements A
309309 const vscode = await importVscode ( )
310310
311311 if ( vscode ) {
312- vscode . window . showInformationMessage ( "Invalid Roo Code Cloud sign in url" )
312+ vscode . window . showInformationMessage ( "Invalid Zoo Code Cloud sign in url" )
313313 }
314314
315315 return
@@ -345,14 +345,14 @@ export class WebAuthService extends EventEmitter<AuthServiceEvents> implements A
345345 const vscode = await importVscode ( )
346346
347347 if ( vscode ) {
348- vscode . window . showInformationMessage ( "Successfully authenticated with Roo Code Cloud" )
348+ vscode . window . showInformationMessage ( "Successfully authenticated with Zoo Code Cloud" )
349349 }
350350
351- this . log ( "[auth] Successfully authenticated with Roo Code Cloud" )
351+ this . log ( "[auth] Successfully authenticated with Zoo Code Cloud" )
352352 } catch ( error ) {
353- this . log ( `[auth] Error handling Roo Code Cloud callback: ${ error } ` )
353+ this . log ( `[auth] Error handling Zoo Code Cloud callback: ${ error } ` )
354354 this . changeState ( "logged-out" )
355- throw new Error ( `Failed to handle Roo Code Cloud callback: ${ error } ` )
355+ throw new Error ( `Failed to handle Zoo Code Cloud callback: ${ error } ` )
356356 }
357357 }
358358
@@ -380,13 +380,13 @@ export class WebAuthService extends EventEmitter<AuthServiceEvents> implements A
380380 const vscode = await importVscode ( )
381381
382382 if ( vscode ) {
383- vscode . window . showInformationMessage ( "Logged out from Roo Code Cloud" )
383+ vscode . window . showInformationMessage ( "Logged out from Zoo Code Cloud" )
384384 }
385385
386- this . log ( "[auth] Logged out from Roo Code Cloud" )
386+ this . log ( "[auth] Logged out from Zoo Code Cloud" )
387387 } catch ( error ) {
388- this . log ( `[auth] Error logging out from Roo Code Cloud: ${ error } ` )
389- throw new Error ( `Failed to log out from Roo Code Cloud: ${ error } ` )
388+ this . log ( `[auth] Error logging out from Zoo Code Cloud: ${ error } ` )
389+ throw new Error ( `Failed to log out from Zoo Code Cloud: ${ error } ` )
390390 }
391391 }
392392
0 commit comments