2018-12-23 13:04:54 -07:00
|
|
|
# Pleroma: A lightweight social networking server
|
2018-12-31 08:41:47 -07:00
|
|
|
# Copyright © 2017-2019 Pleroma Authors <https://pleroma.social/>
|
2018-12-23 13:04:54 -07:00
|
|
|
# SPDX-License-Identifier: AGPL-3.0-only
|
|
|
|
|
2019-02-09 08:16:26 -07:00
|
|
|
# FIXME: Remove this module?
|
2018-03-30 08:50:30 -06:00
|
|
|
# THIS MODULE IS DEPRECATED! DON'T USE IT!
|
|
|
|
# USE THE Pleroma.Web.TwitterAPI.Views.ActivityView MODULE!
|
2017-03-21 10:53:20 -06:00
|
|
|
defmodule Pleroma.Web.TwitterAPI.Representers.ActivityRepresenter do
|
2019-02-27 09:24:51 -07:00
|
|
|
def to_map(activity, opts) do
|
|
|
|
Pleroma.Web.TwitterAPI.ActivityView.render(
|
|
|
|
"activity.json",
|
|
|
|
Map.put(opts, :activity, activity)
|
|
|
|
)
|
2017-04-27 07:18:50 -06:00
|
|
|
end
|
2017-03-21 10:53:20 -06:00
|
|
|
end
|