Can get the list of movements of an account

This commit is contained in:
2025-04-19 21:45:40 +02:00
parent 08538c3911
commit 811e885bf3
3 changed files with 21 additions and 3 deletions
moneymgr_backend/src

@ -131,6 +131,10 @@ async fn main() -> std::io::Result<()> {
)
// Movement controller
.route("/api/movement", web::post().to(movement_controller::create))
.route(
"/api/account/{account_id}/movements",
web::get().to(movement_controller::get_list_of_account),
)
// Static assets
.route("/", web::get().to(static_controller::root_index))
.route(