Inititalize Repo
Build Jellyfin n8n Node / build (push) Failing after 3m3s

This commit is contained in:
2026-04-06 12:50:59 -05:00
parent dfc88ae0e5
commit 7ad2527e32
5 changed files with 153 additions and 0 deletions
+32
View File
@@ -0,0 +1,32 @@
import { ICredentialType, INodeProperties } from 'n8n-workflow';
export class JellyfinApi implements ICredentialType {
name = 'jellyfinApi';
displayName = 'Jellyfin API';
documentationUrl = 'https://api.jellyfin.org/';
properties: INodeProperties[] = [
{
displayName: 'Server URL',
name: 'url',
type: 'string',
default: 'http://localhost:8096',
},
{
displayName: 'API Key',
name: 'apiKey',
type: 'string',
typeOptions: { password: true },
default: '',
},
];
authenticate = {
type: 'generic',
properties: {
headers: {
'Authorization': '={{"MediaBrowser Token=" + $credentials.apiKey}}'
}
},
};
}