feat(geplante-nachrichten): scheduled message rule engine with bot delivery, admin UI, and manual trigger
This commit is contained in:
7
frontend/src/pages/GeplanteMachrichtenBearbeiten.tsx
Normal file
7
frontend/src/pages/GeplanteMachrichtenBearbeiten.tsx
Normal 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} />;
|
||||
}
|
||||
Reference in New Issue
Block a user