n8n-nodes-nextcloud-calendar
Version:
n8n Node für die Integration mit Nextcloud Calendar
40 lines • 1.61 kB
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
exports.NextcloudCalendarApi = void 0;
class NextcloudCalendarApi {
constructor() {
this.name = 'nextcloudCalendarApi';
this.displayName = 'Nextcloud Calendar API';
this.documentationUrl = 'httpsDocsNextcloudComServerLatestDeveloperManualApiCalendarIndexHtml';
this.properties = [
{
displayName: 'Nextcloud URL',
name: 'serverUrl',
type: 'string',
default: 'https://cloud.example.com',
placeholder: 'https://ihre-nextcloud-instanz.de',
description: 'Die URL Ihrer Nextcloud-Instanz (ohne /remote.php/dav/)',
},
{
displayName: 'Benutzername',
name: 'username',
type: 'string',
default: '',
placeholder: 'max.mustermann',
description: 'Ihr Nextcloud Benutzername',
},
{
displayName: 'Passwort Oder App-Passwort',
name: 'password',
type: 'string',
typeOptions: {
password: true,
},
default: '',
description: 'Ihr Nextcloud Passwort oder ein App-Passwort (empfohlen). Bei 401-Fehlern erstellen Sie ein App-Passwort unter Einstellungen > Sicherheit > App-Passwörter.',
},
];
}
}
exports.NextcloudCalendarApi = NextcloudCalendarApi;
//# sourceMappingURL=NextcloudCalendarApi.credentials.js.map