From: Michael Date: Wed, 2 Sep 2020 03:18:04 +0000 (+0000) Subject: Added "manually-approve" to the owner-view X-Git-Url: https://git.mxchange.org/?a=commitdiff_plain;h=247d87c4e5e1474b25d6b2acb64bf1edfc4a43e3;p=friendica.git Added "manually-approve" to the owner-view --- diff --git a/database.sql b/database.sql index c691ed67a6..46a2981e77 100644 --- a/database.sql +++ b/database.sql @@ -1541,6 +1541,7 @@ CREATE VIEW `owner-view` AS SELECT `contact`.`forum` AS `forum`, `contact`.`prv` AS `prv`, `contact`.`contact-type` AS `contact-type`, + `contact`.`manually-approve` AS `manually-approve`, `contact`.`hidden` AS `hidden`, `contact`.`archive` AS `archive`, `contact`.`pending` AS `pending`, diff --git a/static/dbview.config.php b/static/dbview.config.php index a508936ae3..eb9870e772 100755 --- a/static/dbview.config.php +++ b/static/dbview.config.php @@ -184,6 +184,7 @@ return [ "forum" => ["contact", "forum"], "prv" => ["contact", "prv"], "contact-type" => ["contact", "contact-type"], + "manually-approve" => ["contact", "manually-approve"], "hidden" => ["contact", "hidden"], "archive" => ["contact", "archive"], "pending" => ["contact", "pending"],