2019-07-29 02:43:19 +00:00
|
|
|
# Pleroma: A lightweight social networking server
|
2020-03-03 22:44:49 +00:00
|
|
|
# Copyright © 2017-2020 Pleroma Authors <https://pleroma.social/>
|
2019-07-29 02:43:19 +00:00
|
|
|
# SPDX-License-Identifier: AGPL-3.0-only
|
|
|
|
|
|
|
|
defmodule Pleroma.Constants do
|
|
|
|
use Const
|
|
|
|
|
|
|
|
const(as_public, do: "https://www.w3.org/ns/activitystreams#Public")
|
2019-09-18 16:24:20 +00:00
|
|
|
|
|
|
|
const(object_internal_fields,
|
|
|
|
do: [
|
2019-09-30 11:57:54 +00:00
|
|
|
"reactions",
|
2019-09-30 13:13:05 +00:00
|
|
|
"reaction_count",
|
2019-09-18 16:24:20 +00:00
|
|
|
"likes",
|
|
|
|
"like_count",
|
|
|
|
"announcements",
|
|
|
|
"announcement_count",
|
|
|
|
"emoji",
|
|
|
|
"context_id",
|
|
|
|
"deleted_activity_id"
|
|
|
|
]
|
|
|
|
)
|
2019-07-29 02:43:19 +00:00
|
|
|
end
|