mirror of
https://akkoma.dev/AkkomaGang/akkoma.git
synced 2024-11-10 10:09:02 +00:00
Allow uploading a file for follow import.
This commit is contained in:
parent
39ccfdc084
commit
d89193a8d7
|
@ -74,6 +74,9 @@ defmodule Pleroma.Web.TwitterAPI.UtilController do
|
|||
json conn, Enum.into(Formatter.get_custom_emoji(), %{})
|
||||
end
|
||||
|
||||
def follow_import(conn, %{"list" => %Plug.Upload{} = listfile}) do
|
||||
follow_import(conn, %{"list" => File.read!(listfile.path)})
|
||||
end
|
||||
def follow_import(%{assigns: %{user: user}} = conn, %{"list" => list}) do
|
||||
errors = list
|
||||
|> String.split()
|
||||
|
|
Loading…
Reference in a new issue