Allow uploading a file for follow import.

This commit is contained in:
eal 2017-12-12 21:03:28 +02:00
parent 39ccfdc084
commit d89193a8d7
1 changed files with 3 additions and 0 deletions

View File

@ -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()