Add asynchronous call to database.
authorGreg Burri <greg.burri@gmail.com>
Tue, 29 Nov 2022 14:58:06 +0000 (15:58 +0100)
committerGreg Burri <greg.burri@gmail.com>
Tue, 29 Nov 2022 14:58:06 +0000 (15:58 +0100)
commitd28e765e39e70ad2ab9a42885c786d5d8ba9ba40
treecd2dee0fc53ff181dde79443bcf182ef7f94cbdd
parent8a3fef096d720666dc8a54789aee02250642d8a1
Add asynchronous call to database.
See file 'asynchronous.ts'.
21 files changed:
Cargo.lock
TODO.md
backend/Cargo.toml
backend/sql/version_1.sql
backend/src/consts.rs
backend/src/data/asynchronous.rs [new file with mode: 0644]
backend/src/data/db.rs [new file with mode: 0644]
backend/src/data/mod.rs [new file with mode: 0644]
backend/src/db.rs [deleted file]
backend/src/email.rs
backend/src/main.rs
backend/src/services.rs [new file with mode: 0644]
backend/src/utils.rs [new file with mode: 0644]
backend/templates/base.html
backend/templates/base_with_header.html [new file with mode: 0644]
backend/templates/base_with_list.html
backend/templates/message.html
backend/templates/message_base.html [new file with mode: 0644]
backend/templates/sign_in_form.html
backend/templates/sign_up_form.html
backend/templates/title.html [new file with mode: 0644]