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