Skip to content

Commit

Permalink
Merge pull request #189 from EBI-Metagenomics/bugfix/helpdesk-ticket-…
Browse files Browse the repository at this point in the history
…consent

Helpdesk Bcc => CC
  • Loading branch information
mberacochea authored Dec 2, 2020
2 parents 31e44c0 + d674c27 commit ea702bf
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion emgena/serializers.py
Original file line number Diff line number Diff line change
Expand Up @@ -89,7 +89,7 @@ def create(self, validated_data):

if n.is_consent:
ticket["Queue"] = ena_queue
ticket["Bcc"] = emg_email
ticket["CC"] = emg_email
else:
ticket["Queue"] = emg_queue

Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
_requirements = os.path.join(_base, 'requirements.txt')
_requirements_test = os.path.join(_base, 'requirements-test.txt')

version = "1.6.20"
version = "1.6.21"

install_requirements = []
with open(_requirements) as f:
Expand Down
2 changes: 1 addition & 1 deletion tests/webuploader/test_notify.py
Original file line number Diff line number Diff line change
Expand Up @@ -97,7 +97,7 @@ def test_notify_consent(self):
"Subject: Test email subject",
"Text: Hi this is just an example",
"Queue: " + settings.RT["ena_queue"],
"Bcc: " + settings.RT["emg_email"]
"CC: " + settings.RT["emg_email"]
])
}

Expand Down

0 comments on commit ea702bf

Please sign in to comment.