get('/notifications', GetNotificationsController::class); $app->post('/notifications/{id:[0-9]+}', UpdateNotificationController::class); $app->post('/notifications/status/{id:[0-9]+}', UpdateNotificationStatusController::class); $app->post('/notifications/email/test', SendTestEmailController::class); $app->get('/notifications/scheduled/send', SendScheduledNotificationsController::class); $app->post('/notifications/sms', SendAmeliaSmsApiRequestController::class); $app->post('/notifications/sms/history/{id:[0-9]+}', UpdateSMSNotificationHistoryController::class); $app->get('/notifications/sms/history', GetSMSNotificationsHistoryController::class); } }