mirror of
https://github.com/GSA/notifications-admin.git
synced 2026-08-16 20:49:00 -04:00
If a user has already registered with the email they will get a different email when the register again.
The email includes likes to sign in and send feedback
This commit is contained in:
@@ -75,7 +75,7 @@ class UserApiClient(BaseAPIClient):
|
||||
endpoint = '/user/{0}/email-verification'.format(user_id)
|
||||
self.post(endpoint, data=data)
|
||||
|
||||
def sent_already_registered_email(self, user_id, to):
|
||||
def send_already_registered_email(self, user_id, to):
|
||||
data = {'email': to}
|
||||
endpoint = '/user/{0}/email-already-registered'.format(user_id)
|
||||
self.post(endpoint, data=data)
|
||||
|
||||
Reference in New Issue
Block a user