Trying to create a new recipient with one or more Unsubscribed Categories set returns a ValueError--probably because we try to add the recipient instance to the selected subscription categories within the recipient create/update form's save method:
https://github.com/UCF/PostMaster/blob/master/manager/forms.py#L108-L109
We should either update this logic to better support the setting of unsubscriptions upon recipient creation, or modify the form to only include the Unsubscribed Categories field on update.
Trying to create a new recipient with one or more Unsubscribed Categories set returns a ValueError--probably because we try to add the recipient instance to the selected subscription categories within the recipient create/update form's
savemethod:https://github.com/UCF/PostMaster/blob/master/manager/forms.py#L108-L109
We should either update this logic to better support the setting of unsubscriptions upon recipient creation, or modify the form to only include the Unsubscribed Categories field on update.