remove check_rate_limiting

This commit is contained in:
Kenneth Kehl
2025-01-28 09:01:24 -08:00
parent a413ec092d
commit 481f27d443
2 changed files with 1 additions and 49 deletions

View File

@@ -18,7 +18,6 @@ from app.notifications.process_notifications import (
from app.notifications.validators import (
check_if_service_can_send_files_by_email,
check_is_message_too_long,
check_rate_limiting,
check_service_email_reply_to_id,
check_service_has_permission,
check_service_sms_sender_id,
@@ -54,8 +53,6 @@ def post_notification(notification_type):
check_service_has_permission(notification_type, authenticated_service.permissions)
check_rate_limiting(authenticated_service, api_user)
template, template_with_content = validate_template(
form["template_id"],
form.get("personalisation", {}),