forked from AkkomaGang/akkoma
Move add_to_index / remove_from_index to Pleroma.Actitivy.Search
This commit is contained in:
parent
5ed1759091
commit
0802c0666b
2 changed files with 3 additions and 2 deletions
|
@ -368,8 +368,6 @@ def restrict_deactivated_users(query) do
|
|||
end
|
||||
|
||||
defdelegate search(user, query, options \\ []), to: Pleroma.Activity.Search
|
||||
def add_to_index(_activity), do: nil
|
||||
def remove_from_index(_object), do: nil
|
||||
|
||||
def direct_conversation_id(activity, for_user) do
|
||||
alias Pleroma.Conversation.Participation
|
||||
|
|
|
@ -45,6 +45,9 @@ def search(user, search_query, options \\ []) do
|
|||
end
|
||||
end
|
||||
|
||||
def add_to_index(_activity), do: nil
|
||||
def remove_from_index(_object), do: nil
|
||||
|
||||
def maybe_restrict_author(query, %User{} = author) do
|
||||
Activity.Queries.by_author(query, author)
|
||||
end
|
||||
|
|
Loading…
Reference in a new issue