]> git.mxchange.org Git - friendica.git/blobdiff - src/Protocol/ActivityNamespace.php
Ensure to transmit the audience if the parent does so
[friendica.git] / src / Protocol / ActivityNamespace.php
index e5654f3d61db15e3d8db5dda8a1f4f09603cda35..bcbf5b4035e2c87618b0ddf66b647981fe526080 100644 (file)
@@ -1,6 +1,6 @@
 <?php
 /**
- * @copyright Copyright (C) 2010-2021, the Friendica project
+ * @copyright Copyright (C) 2010-2023, the Friendica project
  *
  * @license GNU AGPL version 3 or any later version
  *
@@ -144,8 +144,25 @@ final class ActivityNamespace
         * @var string
         */
        const ATOM1           = 'http://www.w3.org/2005/Atom';
+
+       /**
+        * This namespace is used for the (deprecated) Atom 0.3 specification
+        * @var string
+        */
+       const ATOM03           = 'http://purl.org/atom/ns#';
+       
        /**
         * @var string
         */
        const MASTODON        = 'http://mastodon.social/schema/1.0';
+
+       /**
+        * @var string
+        */
+       const LITEPUB         = 'http://litepub.social';
+
+       /**
+        * @var string
+        */
+       const PEERTUBE        = 'https://joinpeertube.org';
 }