Rename DAO file

To reflect new name of feature
This commit is contained in:
Chris Hill-Scott
2020-07-28 11:28:19 +01:00
parent 65346852ed
commit b19451c7c6
5 changed files with 4 additions and 4 deletions

View File

@@ -74,7 +74,7 @@ from app.dao.services_dao import (
dao_update_service, dao_update_service,
get_services_by_partial_name, get_services_by_partial_name,
) )
from app.dao.service_whitelist_dao import ( from app.dao.service_guest_list_dao import (
dao_fetch_service_guest_list, dao_fetch_service_guest_list,
dao_add_and_commit_guest_list_contacts, dao_add_and_commit_guest_list_contacts,
dao_remove_service_guest_list dao_remove_service_guest_list

View File

@@ -5,7 +5,7 @@ from app.models import (
EMAIL_TYPE, EMAIL_TYPE,
) )
from app.dao.service_whitelist_dao import ( from app.dao.service_guest_list_dao import (
dao_fetch_service_guest_list, dao_fetch_service_guest_list,
dao_add_and_commit_guest_list_contacts, dao_add_and_commit_guest_list_contacts,
dao_remove_service_guest_list dao_remove_service_guest_list

View File

@@ -7,7 +7,7 @@ from notifications_utils.recipients import InvalidPhoneError
from app.v2.errors import BadRequestError, TooManyRequestsError from app.v2.errors import BadRequestError, TooManyRequestsError
from app.config import QueueNames from app.config import QueueNames
from app.dao.service_whitelist_dao import dao_add_and_commit_guest_list_contacts from app.dao.service_guest_list_dao import dao_add_and_commit_guest_list_contacts
from app.service.send_notification import send_one_off_notification from app.service.send_notification import send_one_off_notification
from app.models import ( from app.models import (
EMAIL_TYPE, EMAIL_TYPE,

View File

@@ -8,7 +8,7 @@ from app.models import (
ServiceGuestList, ServiceGuestList,
MOBILE_TYPE, EMAIL_TYPE) MOBILE_TYPE, EMAIL_TYPE)
from app.dao.service_whitelist_dao import dao_add_and_commit_guest_list_contacts from app.dao.service_guest_list_dao import dao_add_and_commit_guest_list_contacts
@pytest.mark.parametrize('url_path', ( @pytest.mark.parametrize('url_path', (