feat(tui): show project copy in session list (#31421)

This commit is contained in:
James Long 2026-06-09 12:10:37 -04:00 committed by GitHub
commit ffcb45d7c9
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
8 changed files with 59 additions and 37 deletions

View file

@ -23864,7 +23864,18 @@
"ProjectDirectories": {
"type": "array",
"items": {
"type": "string"
"type": "object",
"properties": {
"directory": {
"type": "string"
},
"type": {
"type": "string",
"enum": ["main", "root", "git_worktree"]
}
},
"required": ["directory", "type"],
"additionalProperties": false
}
},
"ProjectCopyCopy": {