Files
api/services/nginx/app/modules/bird/config/bird_participantId_c.php
T
Jeppe B a442e70744 Add secure Bird gateway for Pleno Control Plane (#332)
Add the Bird Control Plane gateway, signed webhook ingestion, policy-gated writes, fail-closed production auto-activation, and RSA-OAEP bootstrap credential flow.
2026-07-29 19:59:20 +02:00

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,
''
);
}
}