Fix gallery deletion

This commit is contained in:
Liam 2024-07-29 20:44:38 -04:00
parent c7f618d9dd
commit 91e1af6402

View file

@ -15,7 +15,6 @@ defmodule Philomena.Galleries do
alias Philomena.GalleryReorderWorker
alias Philomena.Notifications
alias Philomena.NotificationWorker
alias Philomena.Notifications.{Notification, UnreadNotification}
alias Philomena.Images
use Philomena.Subscriptions,
@ -95,21 +94,8 @@ defmodule Philomena.Galleries do
|> select([i], i.image_id)
|> Repo.all()
unread_notifications =
UnreadNotification
|> join(:inner, [un], _ in assoc(un, :notification))
|> where([_, n], n.actor_type == "Gallery")
|> where([_, n], n.actor_id == ^gallery.id)
notifications =
Notification
|> where(actor_type: "Gallery")
|> where(actor_id: ^gallery.id)
Multi.new()
|> Multi.delete(:gallery, gallery)
|> Multi.delete_all(:unread_notifications, unread_notifications)
|> Multi.delete_all(:notifications, notifications)
|> Repo.transaction()
|> case do
{:ok, %{gallery: gallery}} ->