Make opts optional in Pleroma.Notification.for_user_query/2

develop
Roman Chvanikov 2019-07-14 22:04:55 +03:00
parent c729883936
commit 168dc97c37
1 changed files with 1 additions and 1 deletions

View File

@ -33,7 +33,7 @@ defmodule Pleroma.Notification do
|> cast(attrs, [:seen])
end
def for_user_query(user, opts) do
def for_user_query(user, opts \\ []) do
query =
Notification
|> where(user_id: ^user.id)