We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a7ae0a7 commit b104890Copy full SHA for b104890
apps/roomote/src/lib/runTask.ts
@@ -13,6 +13,7 @@ import {
13
RooCodeEventName,
14
IpcMessageType,
15
EVALS_SETTINGS,
16
+ ORGANIZATION_DEFAULT,
17
} from '@roo-code/types';
18
import { IpcClient } from '@roo-code-cloud/ipc';
19
import { createJobToken } from '@roo-code-cloud/job-auth';
@@ -108,6 +109,8 @@ export const runTask = async <T extends JobType>({
108
109
);
110
111
envVars += ` ROO_CODE_CLOUD_TOKEN=${token}`;
112
+
113
+ envVars += ` ROO_CODE_CLOUD_ORG_SETTINGS=${Buffer.from(JSON.stringify(ORGANIZATION_DEFAULT)).toString('base64')}`;
114
} catch (error) {
115
logger?.error('Failed to create job token:', error);
116
// Continue without token - job will fall back to no auth
0 commit comments