Move the search.ex file so credo doesn't complain
This commit is contained in:
parent
8898b5e927
commit
7009ef5672
1 changed files with 0 additions and 0 deletions
|
|
@ -1,18 +0,0 @@
|
|||
defmodule Pleroma.Search do
|
||||
def add_to_index(activity) do
|
||||
search_module = Pleroma.Config.get([Pleroma.Search, :module])
|
||||
|
||||
ConcurrentLimiter.limit(Pleroma.Search, fn ->
|
||||
Task.start(fn -> search_module.add_to_index(activity) end)
|
||||
end)
|
||||
end
|
||||
|
||||
def remove_from_index(object) do
|
||||
# Also delete from search index
|
||||
search_module = Pleroma.Config.get([Pleroma.Search, :module])
|
||||
|
||||
ConcurrentLimiter.limit(Pleroma.Search, fn ->
|
||||
Task.start(fn -> search_module.remove_from_index(object) end)
|
||||
end)
|
||||
end
|
||||
end
|
||||
Loading…
Add table
Add a link
Reference in a new issue