mirror of
https://github.com/cisagov/manage.get.gov.git
synced 2025-07-31 15:06:32 +02:00
Merge conflictts pt 1
This commit is contained in:
parent
ca1a79a97f
commit
a5a3c13653
4 changed files with 58 additions and 58 deletions
|
@ -599,11 +599,11 @@ def completed_domain_request(
|
|||
|
||||
return domain_request
|
||||
|
||||
def set_domain_request_investigators(application_list: list[DomainRequest], investigator_user: User):
|
||||
def set_domain_request_investigators(domain_request_list: list[DomainRequest], investigator_user: User):
|
||||
"""Helper method that sets the investigator field of all provided domain_requests"""
|
||||
for application in application_list:
|
||||
application.investigator = investigator_user
|
||||
application.save()
|
||||
for request in domain_request_list:
|
||||
request.investigator = investigator_user
|
||||
request.save()
|
||||
|
||||
|
||||
def multiple_unalphabetical_domain_objects(
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue