Some more fields that will be needed for the user query
authorMichael <heluecht@pirati.ca>
Fri, 15 Jan 2021 11:46:57 +0000 (11:46 +0000)
committerMichael <heluecht@pirati.ca>
Fri, 15 Jan 2021 11:46:57 +0000 (11:46 +0000)
database.sql
static/dbview.config.php

index 65da2f7..226c151 100644 (file)
@@ -1560,6 +1560,9 @@ CREATE VIEW `post-view` AS SELECT
        `contact`.`thumb` AS `contact-avatar`,
        `contact`.`network` AS `contact-network`,
        `contact`.`blocked` AS `contact-blocked`,
+       `contact`.`readonly` AS `contact-readonly`,
+       `contact`.`pending` AS `contact-pending`,
+       `contact`.`rel` AS `contact-rel`,
        `contact`.`uid` AS `contact-uid`,
        IF (`item`.`network` IN ('apub', 'dfrn', 'dspr', 'stat'), true, `contact`.`writable`) AS `writable`,
        `contact`.`self` AS `self`,
index 9dc7791..b0bf7ed 100644 (file)
@@ -36,7 +36,7 @@
  *
  */
 
-return [
+ return [
        "post-view" => [
                "fields" => [
                        "id" => ["item", "id"],
@@ -106,6 +106,9 @@ return [
                        "contact-avatar" => ["contact", "thumb"],
                        "contact-network" => ["contact", "network"],
                        "contact-blocked" => ["contact", "blocked"],
+                       "contact-readonly" => ["contact", "readonly"],
+                       "contact-pending" => ["contact", "pending"],
+                       "contact-rel" => ["contact", "rel"],
                        "contact-uid" => ["contact", "uid"],
                        "writable" => "IF (`item`.`network` IN ('apub', 'dfrn', 'dspr', 'stat'), true, `contact`.`writable`)",
                        "self" => ["contact", "self"],