Merge beta into release #21

Merged
didirus merged 276 commits from beta into release 2025-11-01 13:04:25 +00:00
Showing only changes of commit f874856452 - Show all commits
+10 -10
View File
@@ -559,16 +559,6 @@ impl DBUser {
.try_collect::<Vec<i64>>() .try_collect::<Vec<i64>>()
.await?; .await?;
sqlx::query!(
"
DELETE FROM notifications
WHERE user_id = $1
",
id as DBUserId,
)
.execute(&mut **transaction)
.await?;
sqlx::query!( sqlx::query!(
" "
DELETE FROM notifications_actions DELETE FROM notifications_actions
@@ -589,6 +579,16 @@ impl DBUser {
.execute(&mut **transaction) .execute(&mut **transaction)
.await?; .await?;
sqlx::query!(
"
DELETE FROM notifications
WHERE user_id = $1
",
id as DBUserId,
)
.execute(&mut **transaction)
.await?;
let user_collections = sqlx::query!( let user_collections = sqlx::query!(
" "
SELECT id SELECT id