Add the Bird Control Plane gateway, signed webhook ingestion, policy-gated writes, fail-closed production auto-activation, and RSA-OAEP bootstrap credential flow.
30 lines
586 B
PHP
30 lines
586 B
PHP
<?php
|
|
|
|
namespace bird\config;
|
|
|
|
require_once WD . '/traits/module_config_variable_t.php';
|
|
|
|
use Exception;
|
|
use traits\module_config_variable;
|
|
|
|
class bird_participantId_c
|
|
{
|
|
use module_config_variable;
|
|
|
|
/** @throws Exception */
|
|
public function __construct()
|
|
{
|
|
self::setupConfigVariable(
|
|
'bird',
|
|
'participantId',
|
|
'string',
|
|
false,
|
|
null,
|
|
'Bird access-key participant ID used for confirmed conversation replies.',
|
|
'participant_123',
|
|
false,
|
|
''
|
|
);
|
|
}
|
|
}
|