aboutsummaryrefslogtreecommitdiff
path: root/src/router.php
diff options
context:
space:
mode:
Diffstat (limited to 'src/router.php')
-rw-r--r--src/router.php3
1 files changed, 3 insertions, 0 deletions
diff --git a/src/router.php b/src/router.php
index 228fae2..7348f2b 100644
--- a/src/router.php
+++ b/src/router.php
@@ -115,6 +115,9 @@ elseif($request->getMethod() === 'POST'){
115 elseif($_GET['action'] === 'keep_emails'){ 115 elseif($_GET['action'] === 'keep_emails'){
116 ContactFormController::keepEmails($entityManager, $json); 116 ContactFormController::keepEmails($entityManager, $json);
117 } 117 }
118 elseif($_GET['action'] === 'set_retention_period'){
119 ContactFormController::setEmailsRetentionPeriod($entityManager, $json);
120 }
118 elseif($_GET['action'] === 'set_email_param'){ 121 elseif($_GET['action'] === 'set_email_param'){
119 ContactFormController::setEmailParam($entityManager, $json); 122 ContactFormController::setEmailParam($entityManager, $json);
120 } 123 }