diff options
author | zotlabs <mike@macgirvin.com> | 2017-08-22 19:13:25 -0700 |
---|---|---|
committer | zotlabs <mike@macgirvin.com> | 2017-08-22 19:13:25 -0700 |
commit | 92077725c3b04c25425526163672ca55a773ec15 (patch) | |
tree | b4273fd5051db5ac33bce05134856164ee308a54 /boot.php | |
parent | 9f37dbc6dc1798b9b56a683ed1975adc318ff931 (diff) | |
download | volse-hubzilla-92077725c3b04c25425526163672ca55a773ec15.tar.gz volse-hubzilla-92077725c3b04c25425526163672ca55a773ec15.tar.bz2 volse-hubzilla-92077725c3b04c25425526163672ca55a773ec15.zip |
add support for card doctype and activity_obj type
Diffstat (limited to 'boot.php')
-rwxr-xr-x | boot.php | 4 |
1 files changed, 3 insertions, 1 deletions
@@ -256,7 +256,7 @@ define ( 'NETWORK_OSTATUS', 'stat'); // status.net, identi.ca, GNU-s define ( 'NETWORK_GNUSOCIAL', 'gnusoc'); // status.net, identi.ca, GNU-social, other OStatus implementations define ( 'NETWORK_FEED', 'rss'); // RSS/Atom feeds with no known "post/notify" protocol define ( 'NETWORK_DIASPORA', 'diaspora'); // Diaspora -define ( 'NETWORK_ACTIVITYPUB', 'activitypub'); +define ( 'NETWORK_ACTIVITYPUB', 'activitypub'); define ( 'NETWORK_MAIL', 'mail'); // IMAP/POP define ( 'NETWORK_MAIL2', 'mai2'); // extended IMAP/POP define ( 'NETWORK_FACEBOOK', 'face'); // Facebook API @@ -509,6 +509,7 @@ define ( 'ACTIVITY_OBJ_PROFILE', NAMESPACE_ZOT . '/activity/profile' ); define ( 'ACTIVITY_OBJ_THING', NAMESPACE_ZOT . '/activity/thing' ); define ( 'ACTIVITY_OBJ_LOCATION',NAMESPACE_ZOT . '/activity/location' ); define ( 'ACTIVITY_OBJ_FILE', NAMESPACE_ZOT . '/activity/file' ); +define ( 'ACTIVITY_OBJ_CARD', NAMESPACE_ZOT . '/activity/card' ); /** * Account Flags @@ -554,6 +555,7 @@ define ( 'ITEM_TYPE_PDL', 2 ); define ( 'ITEM_TYPE_WEBPAGE', 3 ); define ( 'ITEM_TYPE_BUG', 4 ); define ( 'ITEM_TYPE_DOC', 5 ); +define ( 'ITEM_TYPE_CARD', 6 ); define ( 'ITEM_IS_STICKY', 1000 ); |