Add command to open signin dialog (#3556)

Co-authored-by: github-actions <github-actions@github.com>
This commit is contained in:
Christian Byrne
2025-04-22 13:46:31 +08:00
committed by GitHub
parent e7fe2046ba
commit c1bc664edd
15 changed files with 37 additions and 0 deletions

View File

@@ -616,6 +616,15 @@ export function useCoreCommands(): ComfyCommand[] {
function: () => {
dialogService.showManagerProgressDialog()
}
},
{
id: 'Comfy.User.OpenSignInDialog',
icon: 'pi pi-user',
label: 'Open Sign In Dialog',
versionAdded: '1.17.6',
function: async () => {
await dialogService.showSignInDialog()
}
}
]