mirror of
https://github.com/Abdulazizzn/n8n-enterprise-unlocked.git
synced 2025-12-17 01:56:46 +00:00
fix(core): Populate MCP endpoints in frontend settings (#17939)
This commit is contained in:
committed by
GitHub
parent
440fc92148
commit
14787fd5a4
@@ -32,6 +32,8 @@ vi.mock('@n8n/stores/useRootStore', () => ({
|
||||
setEndpointWebhook: vi.fn(),
|
||||
setEndpointWebhookTest: vi.fn(),
|
||||
setEndpointWebhookWaiting: vi.fn(),
|
||||
setEndpointMcp: vi.fn(),
|
||||
setEndpointMcpTest: vi.fn(),
|
||||
setTimezone: vi.fn(),
|
||||
setExecutionTimeout: vi.fn(),
|
||||
setMaxExecutionTimeout: vi.fn(),
|
||||
|
||||
@@ -253,6 +253,8 @@ export const useSettingsStore = defineStore(STORES.SETTINGS, () => {
|
||||
rootStore.setEndpointWebhook(fetchedSettings.endpointWebhook);
|
||||
rootStore.setEndpointWebhookTest(fetchedSettings.endpointWebhookTest);
|
||||
rootStore.setEndpointWebhookWaiting(fetchedSettings.endpointWebhookWaiting);
|
||||
rootStore.setEndpointMcp(fetchedSettings.endpointMcp);
|
||||
rootStore.setEndpointMcpTest(fetchedSettings.endpointMcpTest);
|
||||
rootStore.setTimezone(fetchedSettings.timezone);
|
||||
rootStore.setExecutionTimeout(fetchedSettings.executionTimeout);
|
||||
rootStore.setMaxExecutionTimeout(fetchedSettings.maxExecutionTimeout);
|
||||
|
||||
Reference in New Issue
Block a user