diff options
author | lambda <lain@soykaf.club> | 2019-04-08 11:03:10 +0000 |
---|---|---|
committer | lambda <lain@soykaf.club> | 2019-04-08 11:03:10 +0000 |
commit | ff9290836b97f7358b056709e0891e01d641dd6d (patch) | |
tree | 6cd6c3720479e4794cee607c749549515dc6407a | |
parent | 23067908de957bb1e7ad2c87e64ae91e4328cb87 (diff) | |
parent | 36c0a10fdf47efa5067456030bad3204c2088e93 (diff) | |
download | pleroma-ff9290836b97f7358b056709e0891e01d641dd6d.tar.gz |
Merge branch 'feature/697-language-tag-metadata' into 'develop'
adding language tag
See merge request pleroma/pleroma!1034
-rw-r--r-- | lib/pleroma/web/activity_pub/utils.ex | 5 | ||||
-rw-r--r-- | test/web/activity_pub/utils_test.exs | 12 |
2 files changed, 16 insertions, 1 deletions
diff --git a/lib/pleroma/web/activity_pub/utils.ex b/lib/pleroma/web/activity_pub/utils.ex index 32545937e..0b53f71c3 100644 --- a/lib/pleroma/web/activity_pub/utils.ex +++ b/lib/pleroma/web/activity_pub/utils.ex @@ -99,7 +99,10 @@ defmodule Pleroma.Web.ActivityPub.Utils do %{ "@context" => [ "https://www.w3.org/ns/activitystreams", - "#{Web.base_url()}/schemas/litepub-0.1.jsonld" + "#{Web.base_url()}/schemas/litepub-0.1.jsonld", + %{ + "@language" => "und" + } ] } end diff --git a/test/web/activity_pub/utils_test.exs b/test/web/activity_pub/utils_test.exs index 6b9961d82..758214e68 100644 --- a/test/web/activity_pub/utils_test.exs +++ b/test/web/activity_pub/utils_test.exs @@ -193,4 +193,16 @@ defmodule Pleroma.Web.ActivityPub.UtilsTest do assert Utils.fetch_ordered_collection("http://example.com/outbox", 5) == [0, 1] end end + + test "make_json_ld_header/0" do + assert Utils.make_json_ld_header() == %{ + "@context" => [ + "https://www.w3.org/ns/activitystreams", + "http://localhost:4001/schemas/litepub-0.1.jsonld", + %{ + "@language" => "und" + } + ] + } + end end |