Skip to content

Commit ab6929f

Browse files
committed
Enable /review and /connect:chatgpt in Freebuff
- Remove 'review' from FREEBUFF_REMOVED_COMMAND_IDS and FREEBUFF_REMOVED_COMMANDS - Enable CHATGPT_OAUTH_ENABLED flag
1 parent 2aa4cab commit ab6929f

File tree

3 files changed

+1
-3
lines changed

3 files changed

+1
-3
lines changed

cli/src/commands/command-registry.ts

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -174,7 +174,6 @@ const FREEBUFF_REMOVED_COMMANDS = new Set([
174174
'publish',
175175
'gpt-5-agent',
176176
'connect:claude',
177-
'review',
178177
])
179178

180179
const ALL_COMMANDS: CommandDefinition[] = [

cli/src/data/slash-commands.ts

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,6 @@ const FREEBUFF_REMOVED_COMMAND_IDS = new Set([
3939
'refer-friends',
4040
'usage',
4141
'subscribe',
42-
'review',
4342
'agent:gpt-5',
4443
'image',
4544
'publish',

common/src/constants/chatgpt-oauth.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
* Feature flag for ChatGPT OAuth (connect:chatgpt) functionality.
77
* Default OFF until validated.
88
*/
9-
export const CHATGPT_OAUTH_ENABLED = false
9+
export const CHATGPT_OAUTH_ENABLED = true
1010

1111
/** OAuth client id used by Codex-compatible OAuth ecosystems. */
1212
export const CHATGPT_OAUTH_CLIENT_ID = 'app_EMoamEEZ73f0CkXaXp7hrann'

0 commit comments

Comments
 (0)