Directory issue 15: Support the "account-type"

This commit is contained in:
Michael 2018-11-05 17:59:46 +00:00
parent 62761e1099
commit 58ce0d799b
1 changed files with 7 additions and 6 deletions

View File

@ -27,12 +27,13 @@ function noscrape_init(App $a)
Profile::load($a, $which, $profile);
$json_info = [
'addr' => $a->profile['addr'],
'nick' => $which,
'guid' => $a->profile['guid'],
'key' => $a->profile['pubkey'],
'homepage' => System::baseUrl()."/profile/{$which}",
'comm' => ($a->profile['account-type'] == Contact::ACCOUNT_TYPE_COMMUNITY),
'addr' => $a->profile['addr'],
'nick' => $which,
'guid' => $a->profile['guid'],
'key' => $a->profile['pubkey'],
'homepage' => System::baseUrl()."/profile/{$which}",
'comm' => ($a->profile['account-type'] == Contact::ACCOUNT_TYPE_COMMUNITY),
'account-type' => $a->profile['account-type'],
];
if (!$a->profile['net-publish'] || $a->profile['hidewall']) {