mirror of
https://github.com/QwenLM/qwen-code.git
synced 2026-05-03 06:00:49 +00:00
feat test tool permissions
This commit is contained in:
parent
eeb4d85785
commit
db0e373ad7
74 changed files with 4065 additions and 938 deletions
|
|
@ -70,6 +70,7 @@ interface SlashCommandProcessorActions {
|
|||
openSettingsDialog: () => void;
|
||||
openModelDialog: () => void;
|
||||
openTrustDialog: () => void;
|
||||
openPermissionsDialog: () => void;
|
||||
openApprovalModeDialog: () => void;
|
||||
openResumeDialog: () => void;
|
||||
quit: (messages: HistoryItem[]) => void;
|
||||
|
|
@ -470,6 +471,9 @@ export const useSlashCommandProcessor = (
|
|||
case 'trust':
|
||||
actions.openTrustDialog();
|
||||
return { type: 'handled' };
|
||||
case 'permissions':
|
||||
actions.openPermissionsDialog();
|
||||
return { type: 'handled' };
|
||||
case 'subagent_create':
|
||||
actions.openSubagentCreateDialog();
|
||||
return { type: 'handled' };
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue