From 73ca87a6c672c7be17d766fdde05d19ae5bcc31d Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Christian=20Fra=C3=9F?= Date: Sun, 23 Jun 2024 11:45:24 +0200 Subject: [PATCH] [mod] api:action:member_project:parameter for notifcation url --- source/api/actions/member_project.ts | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/source/api/actions/member_project.ts b/source/api/actions/member_project.ts index 3d8f60c..293cebb 100644 --- a/source/api/actions/member_project.ts +++ b/source/api/actions/member_project.ts @@ -27,6 +27,7 @@ namespace _espe.api membership_number : (null | string); name_real_value : string; email_address_private : (null | string); + notification_target_url_template ?: (null | string); }, ( string @@ -59,6 +60,11 @@ namespace _espe.api "nullable": true, "description": "private E-Mail-Adresse" }, + "notification_target_url_template": { + "type": "string", + "nullable": true, + "description": "Platz-Halter: id" + }, }, "required": [ "membership_number", @@ -117,6 +123,9 @@ namespace _espe.api "email_use_nominal_address": false, "email_redirect_to_private_address": false, "password": null, + }, + { + "notification_target_url_template": input.notification_target_url_template, } ); }