]> git.mxchange.org Git - friendica.git/blobdiff - src/Protocol/Activity.php
Merge remote-tracking branch 'upstream/2022.05-rc' into bulk-delivery
[friendica.git] / src / Protocol / Activity.php
index 637669a61e8bc7acd3744db6f87c224d0e954687..e75b1cf507213b00919be6f7560f5a30453da15f 100644 (file)
@@ -183,6 +183,13 @@ final class Activity
         */
        const EMOJIREACT = ActivityNamespace::LITEPUB . '/emojireact';
 
+       /**
+        * View notification from Peertube
+        *
+        * @var string
+        */
+       const VIEW       = ActivityNamespace::PEERTUBE . '/view';
+
        /**
         * likes (etc.) can apply to other things besides posts. Check if they are post children,
         * in which case we handle them specially
@@ -195,6 +202,7 @@ final class Activity
                self::FOLLOW,
                self::ANNOUNCE,
                self::EMOJIREACT,
+               self::VIEW,
        ];
 
        /**