mirror of
https://github.com/GSA/notifications-api.git
synced 2025-12-20 23:41:17 -05:00
remove broadcast-related code, except migrations
This commit is contained in:
@@ -5,10 +5,7 @@ import botocore
|
||||
from flask import Blueprint, current_app, jsonify, request
|
||||
from notifications_utils import SMS_CHAR_COUNT_LIMIT
|
||||
from notifications_utils.pdf import extract_page_from_pdf
|
||||
from notifications_utils.template import (
|
||||
BroadcastMessageTemplate,
|
||||
SMSMessageTemplate,
|
||||
)
|
||||
from notifications_utils.template import SMSMessageTemplate
|
||||
from PyPDF2.errors import PdfReadError
|
||||
from requests import post as requests_post
|
||||
from sqlalchemy.orm.exc import NoResultFound
|
||||
@@ -32,7 +29,6 @@ from app.dao.templates_dao import (
|
||||
from app.errors import InvalidRequest, register_errors
|
||||
from app.letters.utils import get_letter_pdf_and_metadata
|
||||
from app.models import (
|
||||
BROADCAST_TYPE,
|
||||
LETTER_TYPE,
|
||||
SECOND_CLASS,
|
||||
SMS_TYPE,
|
||||
@@ -60,9 +56,6 @@ def _content_count_greater_than_limit(content, template_type):
|
||||
if template_type == SMS_TYPE:
|
||||
template = SMSMessageTemplate({'content': content, 'template_type': template_type})
|
||||
return template.is_message_too_long()
|
||||
if template_type == BROADCAST_TYPE:
|
||||
template = BroadcastMessageTemplate({'content': content, 'template_type': template_type})
|
||||
return template.is_message_too_long()
|
||||
return False
|
||||
|
||||
|
||||
|
||||
Reference in New Issue
Block a user