You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
When a user is deleting their account, there's a checkbox which allows them to remove their email address from our newsletter. The checkbox is always rendered, regardless of whether or not they are registered to our newsletter. We should only render this checkbox if the user is currently registered to our newsletter.
To support this change, will need to modify the to_representation method on the user serializer in the CFL python package. This data object should include a boolean field called added_to_newsletter, which will be set by calling Dotdigital's API.
The text was updated successfully, but these errors were encountered:
When a user is deleting their account, there's a checkbox which allows them to remove their email address from our newsletter. The checkbox is always rendered, regardless of whether or not they are registered to our newsletter. We should only render this checkbox if the user is currently registered to our newsletter.
To support this change, will need to modify the
to_representation
method on the user serializer in the CFL python package. This data object should include a boolean field calledadded_to_newsletter
, which will be set by calling Dotdigital's API.The text was updated successfully, but these errors were encountered: