run mix format

This commit is contained in:
William Pitcock 2018-05-19 08:37:04 +00:00
parent 4033ed6714
commit 6e8de2faae
2 changed files with 19 additions and 11 deletions

View File

@ -404,15 +404,19 @@ defmodule Pleroma.User do
from(
u in User,
select_merge: %{
search_distance: fragment(
search_distance:
fragment(
"? <-> (? || ?)",
^query,
u.nickname,
u.name
)}
)
}
)
q = from(s in subquery(inner),
q =
from(
s in subquery(inner),
order_by: s.search_distance,
limit: 20
)

View File

@ -628,7 +628,11 @@ defmodule HTTPoisonMock do
}}
end
def get("https://hubzilla.example.org/channel/kaniini", [Accept: "application/activity+json"], _) do
def get(
"https://hubzilla.example.org/channel/kaniini",
[Accept: "application/activity+json"],
_
) do
{:ok,
%Response{
status_code: 200,