Christopher Broderick

Results 51 comments of Christopher Broderick

Looking at the code history, it seems there was an effort to deal with this issue over time and appears to have resulted in a fairly convoluted bit of code....

This PR #1104 should fix this issue - please confirm and close if so.

The right route to go will depend on whether it makes sense to have multiple users records with the same email address. Since the email address has not been unique...

Unfortunately it would affect all other apps within the same Django project since they all must use the same User object for authentication to work. The least disruptive route is...

Perhaps the simplest option is to add a hook into the save signal on the user model and check for duplicated email addresses manually. We could log a warning to...

That sounds to me like a bug but may just be a design issue. @gwasser do you have any input on this?

Is the aim to test containerisation script or to auto deploy a default container build to a container repository? Either seems like a good idea.

👍 - it can be added to the existing release workflow that pushes to PyPi. I still need to enhance that further to push the docs to the readthedocs website.

In my opinion the whole permissions aspect of Helpdesk could probably do with a rewrite so that enhancing permissions becomes a much simpler and more easily understood implementation that can...