Merge "Fix some issues with updating user email defaults"
This commit is contained in:
commit
b305d7285f
@ -967,7 +967,7 @@ class DelegateAPITests(AdjutantAPITestCase):
|
|||||||
self.assertEqual(response.status_code, status.HTTP_202_ACCEPTED)
|
self.assertEqual(response.status_code, status.HTTP_202_ACCEPTED)
|
||||||
self.assertEqual(response.json(), {"notes": ["task created"]})
|
self.assertEqual(response.json(), {"notes": ["task created"]})
|
||||||
|
|
||||||
self.assertEqual(len(mail.outbox), 1)
|
self.assertEqual(len(mail.outbox), 2)
|
||||||
|
|
||||||
new_token = Token.objects.all()[0]
|
new_token = Token.objects.all()[0]
|
||||||
url = "/v1/tokens/" + new_token.token
|
url = "/v1/tokens/" + new_token.token
|
||||||
@ -976,6 +976,7 @@ class DelegateAPITests(AdjutantAPITestCase):
|
|||||||
response = self.client.post(url, data, format="json")
|
response = self.client.post(url, data, format="json")
|
||||||
self.assertEqual(response.status_code, status.HTTP_200_OK)
|
self.assertEqual(response.status_code, status.HTTP_200_OK)
|
||||||
self.assertEqual(user.email, "new_test@example.com")
|
self.assertEqual(user.email, "new_test@example.com")
|
||||||
|
self.assertEqual(len(mail.outbox), 3)
|
||||||
|
|
||||||
def test_update_email_task_not_authenticated(self):
|
def test_update_email_task_not_authenticated(self):
|
||||||
"""
|
"""
|
||||||
|
@ -77,7 +77,7 @@ class UpdateUserEmail(BaseTask):
|
|||||||
]
|
]
|
||||||
action_config = {
|
action_config = {
|
||||||
"SendAdditionalEmailAction": {
|
"SendAdditionalEmailAction": {
|
||||||
"initial": {
|
"prepare": {
|
||||||
"subject": "OpenStack Email Update Requested",
|
"subject": "OpenStack Email Update Requested",
|
||||||
"template": "update_user_email_started.txt",
|
"template": "update_user_email_started.txt",
|
||||||
"email_current_user": True,
|
"email_current_user": True,
|
||||||
|
Loading…
x
Reference in New Issue
Block a user