Fakultas Ilmu Komputer UI

Skip to content
Snippets Groups Projects
Commit d8c635b9 authored by Muhammad Rafif Elfazri's avatar Muhammad Rafif Elfazri
Browse files

Temporary Ordering Search Filter On Threads

parent edad1d6e
No related branches found
No related tags found
No related merge requests found
......@@ -21,7 +21,8 @@ defmodule Diskuy.ForumThreadPage do
def page_search(title)do
query_start()
|> where([p], ilike(p.title, ^"%#{String.replace(title, ~r/[%_(\\)]/, "\\\\\\0") }%"))
|> where([tr], ilike(tr.title, ^"%#{String.replace(title, ~r/[%_(\\)]/, "\\\\\\0") }%"))
|> order_by([tr], asc: tr.title , desc: tr.inserted_at )
end
def page_per_topic(topic_id) do
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment