Maico Timmerman
Maico Timmerman
I think the scope of this patch could be broadened a little more. Currently, it only improves the message-ID and names the setting accordingly. However, the EHLO/HELO SMTP command is...
@jrief @carltongibson I just ran into this thread again. I think the change is nearly complete, however we are still missing the fix for the `EHLO` / `HELO`. My proposed...
Additionally, with the `checkout_flow_steps` signal, totally new questions could be asked in the checkout process. Perhaps a new signal to add `FakeQuestions` might be easier to solve both the problems?
Ah sorry, wasn't clear on that. It is for clarity in the admin panel: on the `/control/event///questions/` page.
The main functionality I would be looking for can be summarized as: > An overview of non-shredded personal identifiable information within an organizer Now to divide this into some subsections:...
> I'm not sure I fully understand the need yet. Creating manual refunds for all orders would mean you are not using the refund capabilities of your payment provider at...
> I understand, but I want to not introduce more checkboxes that users need to read and understand wink I'm not saying I won't move on this, but I want...
Yes, as the second pattern matches better with the ORM declarative syntax.
Mypy support is indeed a big +1, I think an update to the stubs is enough for that, I'll try and work on a PR for that. I found the...
I'll have to experiment with some more cases, but I think it should work with something like: ```py class ValuesBase(UpdateBase): ... @overload def values(self: _VB, **kwargs: Any) -> _VB: ......