-
Notifications
You must be signed in to change notification settings - Fork 8.8k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
feat(core): Fix populating of node custom api call options #5347
Merged
Conversation
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
…d add e2e tests to check for custom nodes credentials
OlegIvaniv
changed the title
feat(cli): Fix populating of node custom api call options
feat(core): Fix populating of node custom api call options
Feb 3, 2023
n8n-assistant
bot
added
core
Enhancement outside /nodes-base and /editor-ui
n8n team
Authored by the n8n team
ui
Enhancement in /editor-ui or /design-system
labels
Feb 3, 2023
@netroy As you have the most context about this, can you please review it? The e2e tests should also be fixed . |
netroy
reviewed
Feb 3, 2023
netroy
approved these changes
Feb 3, 2023
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
LGTM. But, let's wait for the e2e tests to pass before we merge.
Got released with |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
This PR moves the logic for injecting
customApiCallOptions
from thenodeTypes
API controllerLoadNodesAndCredentialsClass
after both base and community nodes(and credentials) are loaded. It also adds three additional E2E tests to check: If the API hint is displaying accordingly, If a custom node with n8n credentials is loading correctly, and if a custom node with a custom credential is loading correctly.Since we now need to inject custom nodes in two different specs, I've moved it to a central place and made sure the correct caching headers are set.
Github issue / Community forum post (link here to close automatically): https://community.n8n.io/t/shopify-generic-api-call/22375 #5345 #5303