Skip to content
Closed
Changes from 1 commit
Commits
Show all changes
30 commits
Select commit Hold shift + click to select a range
b59ad87
migrate manager menu items
christian-byrne Apr 9, 2025
37a5add
Update locales [skip ci]
invalid-email-address Apr 9, 2025
2fc6ae0
switch to v2 manager API endpoints
christian-byrne Apr 9, 2025
aeb948a
re-arrange menu items
christian-byrne Apr 11, 2025
799f13a
await promises. update settings schema
christian-byrne Apr 14, 2025
0f282cc
move legacy option to startup arg
christian-byrne Apr 14, 2025
5733156
Add banner indicating how to use legacy manager UI
christian-byrne Apr 14, 2025
b4e4f45
Update locales [skip ci]
invalid-email-address Apr 14, 2025
3f598e4
add "Check for Updates", "Install Missing" menu items
christian-byrne Apr 14, 2025
f5744d2
Update locales [skip ci]
invalid-email-address Apr 14, 2025
becf55d
use correct response shape
christian-byrne Apr 14, 2025
40bdc9f
improve command names
christian-byrne Apr 14, 2025
450c3b0
dont show missing nodes button in legacy manager mode
christian-byrne Apr 15, 2025
62a33a6
[Update to v2 API] update WS done message
christian-byrne Apr 15, 2025
a29019f
Update locales [skip ci]
invalid-email-address Jul 19, 2025
84d6352
[fix] Fix json syntax error from rebase (#4607)
christian-byrne Jul 30, 2025
2827e78
Fix errors from rebase (removed `Tag` component import and duplicated…
christian-byrne Jul 30, 2025
2a8c474
Update locales [skip ci]
invalid-email-address Jul 30, 2025
2cf4dab
[Manager] "Restarting" state after clicking restart button (#4637)
viva-jinyi Aug 1, 2025
424f6de
[feat] Add reactive feature flags foundation (#4817)
christian-byrne Aug 7, 2025
08f25dd
[feat] Add v2/ prefix to manager service base URL (#4872)
christian-byrne Aug 9, 2025
574a1db
[cleanup] Remove unused manager route enums (#4875)
christian-byrne Aug 9, 2025
f82c4ce
[feat] Add manager capability feature flags
christian-byrne Aug 18, 2025
a257cd5
[feat] Add managerStateStore for three-state manager UI logic
christian-byrne Aug 18, 2025
6bf9fa6
[feat] Address PR review comments for managerStateStore
christian-byrne Aug 18, 2025
5fd1d17
[fix] Remove unnecessary @types/lodash dependency
christian-byrne Aug 21, 2025
08a11d0
[fix] Replace lodash import with es-toolkit/compat in api.ts
christian-byrne Aug 25, 2025
f18c70b
[feat] Apply manager state handling to all entry points
christian-byrne Aug 25, 2025
7e76637
[cleanup] Remove unnecessary comments and files
christian-byrne Aug 25, 2025
ceb54bb
[fix] Fix API URL prefix slash and add error handling
christian-byrne Sep 1, 2025
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
[cleanup] Remove unused manager route enums (#4875)
  • Loading branch information
christian-byrne committed Aug 17, 2025
commit 574a1db0c2a1f1183c82da2acb37d920ae14d55a
3 changes: 1 addition & 2 deletions src/services/comfyManagerService.ts
Original file line number Diff line number Diff line change
Expand Up @@ -27,10 +27,9 @@ enum ManagerRoute {
UPDATE_ALL = 'manager/queue/update_all',
UNINSTALL = 'manager/queue/uninstall',
DISABLE = 'manager/queue/disable',
// FIX_NODE is currently unused but kept for potential future implementation
FIX_NODE = 'manager/queue/fix',
LIST_INSTALLED = 'customnode/installed',
GET_NODES = 'customnode/getmappings',
GET_PACKS = 'customnode/getlist',
IMPORT_FAIL_INFO = 'customnode/import_fail_info',
REBOOT = 'manager/reboot',
IS_LEGACY_MANAGER_UI = 'manager/is_legacy_manager_ui'
Expand Down
Loading