Skip to content
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(JWT Node): New node #9005

Merged
merged 9 commits into from
Apr 10, 2024
3 changes: 1 addition & 2 deletions packages/nodes-base/credentials/jwtAuth.credentials.ts
Original file line number Diff line number Diff line change
Expand Up @@ -71,8 +71,7 @@ export class jwtAuth implements ICredentialType {
displayName: 'Key Type',
name: 'keyType',
type: 'options',
description:
'Choose either the secret passphrase for PEM encoded public keys for RSA and ECDSA',
description: 'Choose either the secret passphrase or PEM encoded public keys',
options: [
{
name: 'Passphrase',
Expand Down
19 changes: 19 additions & 0 deletions packages/nodes-base/nodes/Jwt/Jwt.node.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
{
"node": "n8n-nodes-base.jwt",
"nodeVersion": "1.0",
"codexVersion": "1.0",
"categories": ["Development"],
"alias": ["Token", "Key", "JSON", "Payload", "Sign", "Verify", "Decode"],
"resources": {
"credentialDocumentation": [
{
"url": "https://docs.n8n.io/credentials/jwt"
}
],
"primaryDocumentation": [
{
"url": "https://docs.n8n.io/integrations/builtin/core-nodes/n8n-nodes-base.jwt/"
}
]
}
}