diff options
author | Roger Braun <roger@rogerbraun.net> | 2017-07-29 22:07:02 +0200 |
---|---|---|
committer | Roger Braun <roger@rogerbraun.net> | 2017-07-29 22:07:02 +0200 |
commit | fc269fd319a77c6f7dd3ac340c6306f74ec35ce8 (patch) | |
tree | 2b835c3c5db9948b737161f659f3041b8dfe8d5c /test | |
parent | d0342df617f18250b04872769938c7778cc70dd2 (diff) | |
download | pleroma-fc269fd319a77c6f7dd3ac340c6306f74ec35ce8.tar.gz |
Add html alternate link to atom.
Diffstat (limited to 'test')
-rw-r--r-- | test/web/ostatus/activity_representer_test.exs | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/test/web/ostatus/activity_representer_test.exs b/test/web/ostatus/activity_representer_test.exs index b9fa4ccfb..c706c1e07 100644 --- a/test/web/ostatus/activity_representer_test.exs +++ b/test/web/ostatus/activity_representer_test.exs @@ -23,6 +23,7 @@ defmodule Pleroma.Web.OStatus.ActivityRepresenterTest do <ostatus:conversation>#{note_activity.data["context"]}</ostatus:conversation> <link ref="#{note_activity.data["context"]}" rel="ostatus:conversation" /> <link type="application/atom+xml" href="#{note_activity.data["object"]["id"]}" rel="self" /> + <link type="text/html" href="#{note_activity.data["object"]["id"]}" rel="alternate" /> <category term="2hu"/> <link rel="mentioned" ostatus:object-type="http://activitystrea.ms/schema/1.0/collection" href="http://activityschema.org/collection/public"/> """ @@ -56,6 +57,7 @@ defmodule Pleroma.Web.OStatus.ActivityRepresenterTest do <ostatus:conversation>#{answer.data["context"]}</ostatus:conversation> <link ref="#{answer.data["context"]}" rel="ostatus:conversation" /> <link type="application/atom+xml" href="#{answer.data["object"]["id"]}" rel="self" /> + <link type="text/html" href="#{answer.data["object"]["id"]}" rel="alternate" /> <category term="2hu"/> <thr:in-reply-to ref="#{note.data["object"]["id"]}" /> <link rel="mentioned" ostatus:object-type="http://activitystrea.ms/schema/1.0/collection" href="http://activityschema.org/collection/public"/> |