mirror of
https://github.com/friendica/friendica
synced 2024-11-09 16:22:56 +00:00
Public id added
This commit is contained in:
parent
f1e4d30898
commit
58b84ca01d
2 changed files with 2 additions and 0 deletions
|
@ -2482,6 +2482,7 @@ CREATE VIEW `account-view` AS SELECT
|
|||
DROP VIEW IF EXISTS `account-user-view`;
|
||||
CREATE VIEW `account-user-view` AS SELECT
|
||||
`ucontact`.`id` AS `id`,
|
||||
`contact`.`id` AS `pid`,
|
||||
`ucontact`.`uid` AS `uid`,
|
||||
`contact`.`url` AS `url`,
|
||||
`contact`.`nurl` AS `nurl`,
|
||||
|
|
|
@ -916,6 +916,7 @@
|
|||
"account-user-view" => [
|
||||
"fields" => [
|
||||
"id" => ["ucontact", "id"],
|
||||
"pid" => ["contact", "id"],
|
||||
"uid" => ["ucontact", "uid"],
|
||||
"url" => ["contact", "url"],
|
||||
"nurl" => ["contact", "nurl"],
|
||||
|
|
Loading…
Reference in a new issue