Format dates using CommonAPI utils.

This commit is contained in:
Phil Hagelberg 2019-10-29 21:09:05 -07:00
commit 93e9c0cedf
2 changed files with 6 additions and 1 deletions

View file

@ -28,4 +28,9 @@ defmodule Pleroma.Web.StaticFE.StaticFEView do
def fetch_media_type(%{"mediaType" => mediaType}) do
Utils.fetch_media_type(@media_types, mediaType)
end
def format_date(date) do
{:ok, date, _} = DateTime.from_iso8601(date)
Pleroma.Web.CommonAPI.Utils.format_asctime(date)
end
end