feat(geplante-nachrichten): scheduled message rule engine with bot delivery, admin UI, and manual trigger

This commit is contained in:
Matthias Hochmeister
2026-04-17 09:10:57 +02:00
parent 6614fbaa68
commit 8a0c4200ff
24 changed files with 2208 additions and 69 deletions

View File

@@ -0,0 +1,7 @@
import { useParams } from 'react-router-dom';
import GeplanteMachrichtenForm from './GeplanteMachrichtenForm';
export default function GeplanteMachrichtenBearbeiten() {
const { id } = useParams<{ id: string }>();
return <GeplanteMachrichtenForm ruleId={id} />;
}