]> git.mxchange.org Git - quix0rs-gnu-social.git/commitdiff
Add scope bitmap for notices
authorEvan Prodromou <evan@status.net>
Thu, 17 Mar 2011 02:30:31 +0000 (22:30 -0400)
committerEvan Prodromou <evan@status.net>
Thu, 17 Mar 2011 16:16:09 +0000 (12:16 -0400)
classes/Notice.php
classes/statusnet.ini
db/core.php

index 664e5dab9f85d3c4d51901a041e7638ef285ab2b..36686f6f2de9cdff5d034694142f1126f31db722 100644 (file)
@@ -73,6 +73,7 @@ class Notice extends Memcached_DataObject
     public $location_ns;                     // int(4)
     public $repeat_of;                       // int(4)
     public $object_type;                     // varchar(255)
+    public $scope;                           // int(4)
 
     /* Static get */
     function staticGet($k,$v=NULL)
index 338e5c5aeaace0486b78f87b1047e049df583e8e..b598f9fc68b44dc4918ed3d7a6815820d4afd93a 100644 (file)
@@ -337,6 +337,7 @@ location_id = 1
 location_ns = 1
 repeat_of = 1
 object_type = 2
+scope = 1
 
 [notice__keys]
 id = N
index 16a59462d491bd2f884f3c454858486185e86331..4881cc0fff5b792c67c113bfbef58483bd8d6a13 100644 (file)
@@ -202,6 +202,9 @@ $schema['notice'] = array(
         'location_ns' => array('type' => 'int', 'description' => 'namespace for location'),
         'repeat_of' => array('type' => 'int', 'description' => 'notice this is a repeat of'),
         'object_type' => array('type' => 'varchar', 'length' => 255, 'description' => 'URI representing activity streams object type', 'default' => 'http://activitystrea.ms/schema/1.0/note'),
+        'scope' => array('type' => 'int',
+                         'default' => '1',
+                         'description' => 'bit map for distribution scope; 0 = everywhere; 1 = this server only; 2 = addressees; 4 = followers'),
     ),
     'primary key' => array('id'),
     'unique keys' => array(