code style

This commit is contained in:
Alex S 2019-04-06 20:47:05 +07:00
parent dcc54f8cfa
commit a53d591ac5
1 changed files with 4 additions and 4 deletions

View File

@ -167,10 +167,6 @@ defmodule Pleroma.Web.TwitterAPI.TwitterAPI do
end
end
defp registration_process(_registration_open = true, params, _token) do
create_user(params)
end
defp registration_process(registration_open, params, token)
when registration_open == false or is_nil(registration_open) do
invite =
@ -193,6 +189,10 @@ defmodule Pleroma.Web.TwitterAPI.TwitterAPI do
end
end
defp registration_process(true, params, _token) do
create_user(params)
end
defp create_user(params) do
changeset = User.register_changeset(%User{}, params)