mirror of
https://github.com/matrix-construct/construct
synced 2024-11-16 15:00:51 +01:00
ircd:Ⓜ️:bridge: Fix type assumption for config elements.
This commit is contained in:
parent
d4418e3857
commit
8a0a31801b
1 changed files with 3 additions and 3 deletions
|
@ -57,13 +57,13 @@ struct ircd::m::bridge::namespaces
|
||||||
:json::tuple
|
:json::tuple
|
||||||
<
|
<
|
||||||
/// Events which are sent from certain users.
|
/// Events which are sent from certain users.
|
||||||
json::property<name::users, namespace_>,
|
json::property<name::users, json::array>,
|
||||||
|
|
||||||
/// Events which are sent in rooms with certain room aliases.
|
/// Events which are sent in rooms with certain room aliases.
|
||||||
json::property<name::aliases, namespace_>,
|
json::property<name::aliases, json::array>,
|
||||||
|
|
||||||
/// Events which are sent in rooms with certain room IDs.
|
/// Events which are sent in rooms with certain room IDs.
|
||||||
json::property<name::rooms, namespace_>
|
json::property<name::rooms, json::array>
|
||||||
>
|
>
|
||||||
{
|
{
|
||||||
using super_type::tuple;
|
using super_type::tuple;
|
||||||
|
|
Loading…
Reference in a new issue