Files
thoughts/thoughts-backend/models
Gabriel Kaszewski decf81e535 feat: implement user follow/unfollow functionality and thought retrieval by user
- Added follow and unfollow endpoints for users.
- Implemented logic to retrieve thoughts by a specific user.
- Updated user error handling to include cases for already following and not following.
- Created persistence layer for follow relationships.
- Enhanced user and thought schemas to support new features.
- Added tests for follow/unfollow endpoints and thought retrieval.
- Updated frontend to display thoughts and allow posting new thoughts.
2025-09-05 19:08:37 +02:00
..

models

No axum or api dependencies should be introduced into this folder. Only dependencies for modelling are allowed:

  • serde (JSON serialization/deserialization)
  • SeaORM (domain models and database)
  • validator (parameter validation)
  • utoipa (openapi)

SeaORM

Write migration files first, then generate models.