doc fixes

This commit is contained in:
Francis Dinh 2018-04-16 10:59:32 -04:00
parent 5b0d0b9ab2
commit d16877251a
1 changed files with 4 additions and 1 deletions

View File

@ -237,7 +237,7 @@ def fetch_latest_follow(%User{ap_id: follower_id}, %User{ap_id: followed_id}) do
#### Announce-related helpers #### Announce-related helpers
@doc """ @doc """
Make announce activity data for the given actor and object Retruns an existing announce activity if the notice has already been announced
""" """
def get_existing_announce(actor, %{data: %{"id" => id}}) do def get_existing_announce(actor, %{data: %{"id" => id}}) do
query = query =
@ -258,6 +258,9 @@ def get_existing_announce(actor, %{data: %{"id" => id}}) do
Repo.one(query) Repo.one(query)
end end
@doc """
Make announce activity data for the given actor and object
"""
def make_announce_data( def make_announce_data(
%User{ap_id: ap_id} = user, %User{ap_id: ap_id} = user,
%Object{data: %{"id" => id}} = object, %Object{data: %{"id" => id}} = object,