forked from AkkomaGang/akkoma
Return iso8601 date.
This commit is contained in:
parent
e6286152b9
commit
d2faee01ee
1 changed files with 1 additions and 0 deletions
|
@ -157,6 +157,7 @@ def notifications(%{assigns: %{user: user}} = conn, params) do
|
|||
notifications = Notification.for_user(user, params)
|
||||
result = Enum.map(notifications, fn (%{id: id, activity: activity, inserted_at: created_at}) ->
|
||||
actor = User.get_cached_by_ap_id(activity.data["actor"])
|
||||
created_at = NaiveDateTime.to_iso8601(created_at)
|
||||
case activity.data["type"] do
|
||||
"Create" ->
|
||||
%{id: id, type: "mention", created_at: created_at, account: AccountView.render("account.json", %{user: actor}), status: StatusView.render("status.json", %{activity: activity})}
|
||||
|
|
Loading…
Reference in a new issue