pycon
pycon copied to clipboard
Improvements: ```[tasklist] ### Tasks - [ ] Speed up the deployment time. Currently from start to finish it takes 8 mins - [ ] Remove the need to build both...
TODO: Look at the feedback received last year and define the work needed
For the association membership service we implemented a basic PretixAPI class: https://github.com/pythonitalia/pycon/blob/99432b3caef1fded4840f6e8275787322f2f55e7/backend/association_membership/handlers/pretix/api.py#L10 We should extend it and make it work for all operations the pycon backend needs
versioning / delete safety and setup backups to avoid losing data - https://registry.terraform.io/providers/hashicorp/aws/latest/docs/resources/s3_bucket_versioning
Implement an audit log for all significant actions related to grants. This will allow us to track changes in grant status and actions like sending emails or generating vouchers. The...
The Grant model contains a few Boolean fields that indicate various needs of the applicants. These fields are: ```python needs_funds_for_travel = models.BooleanField(_("Needs funds for travel")) need_visa = models.BooleanField(_("Need visa/invitation letter?"),...