purge chat and shout endpoints
[akkoma] / lib / pleroma / web / views / streamer_view.ex
index 7706035e986081798ba2fc134b8d50bc9fe61d47..de2e4d1e984dfc6bcaf0158305b7a17d4621bedb 100644 (file)
@@ -51,29 +51,6 @@ defmodule Pleroma.Web.StreamerView do
     |> Jason.encode!()
   end
 
-  def render("chat_update.json", %{chat_message_reference: cm_ref}) do
-    # Explicitly giving the cmr for the object here, so we don't accidentally
-    # send a later 'last_message' that was inserted between inserting this and
-    # streaming it out
-    #
-    # It also contains the chat with a cache of the correct unread count
-    Logger.debug("Trying to stream out #{inspect(cm_ref)}")
-
-    representation =
-      Pleroma.Web.PleromaAPI.ChatView.render(
-        "show.json",
-        %{last_message: cm_ref, chat: cm_ref.chat}
-      )
-
-    %{
-      event: "pleroma:chat_update",
-      payload:
-        representation
-        |> Jason.encode!()
-    }
-    |> Jason.encode!()
-  end
-
   def render("follow_relationships_update.json", item) do
     %{
       event: "pleroma:follow_relationships_update",