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

View File

@@ -559,16 +559,6 @@ impl DBUser {
.try_collect::<Vec<i64>>()
.await?;
sqlx::query!(
"
DELETE FROM notifications
WHERE user_id = $1
",
id as DBUserId,
)
.execute(&mut **transaction)
.await?;
sqlx::query!(
"
DELETE FROM notifications_actions
@@ -589,6 +579,16 @@ impl DBUser {
.execute(&mut **transaction)
.await?;
sqlx::query!(
"
DELETE FROM notifications
WHERE user_id = $1
",
id as DBUserId,
)
.execute(&mut **transaction)
.await?;
let user_collections = sqlx::query!(
"
SELECT id