Merged
Conversation
This commit introduces timestamp tracking for key events in the funding application system: - Adds and fields to the model. - Adds field to the model. - Automatically sets upon application submission (via ). - Sets when a board member casts a vote. - Sets when an application's voting process is finalized (either approved or rejected, potentially through early conclusion logic). Unit tests have been updated and added to to verify the correct population of these timestamp fields across various application and voting scenarios. Addresses the remaining open points in ai_docs/task_1_1.md regarding timestamping.
This commit introduces several new functionalities: - Displays `created_at` and `concluded_at` timestamps in the application archive UI. - Displays `voted_at` timestamp for each vote in the archive's expanded view. - Adds `created_at` and `concluded_at` timestamps to all relevant email templates. - Refactors SQLAlchemy models to use modern, type-annotated syntax with `Mapped` and `mapped_column` to improve type safety.
- Added "created_at" and "conlcuded_at" columns to the "applications" table. - Added "voted_at" column to the "votes" table. Closes #12
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
table.
Closes #12