mirror of
https://github.com/sonr-io/sonr.git
synced 2026-08-04 02:11:40 +00:00
26 lines
806 B
Plaintext
26 lines
806 B
Plaintext
sonrEventsBridge: Yaml = new {
|
|
id = read("env:SONR_EVENTS_BRIDGE_ID") ?? ""
|
|
url = read("env:SONR_EVENTS_BRIDGE_URL") ?? ""
|
|
`as_token` = read("env:SONR_EVENTS_BRIDGE_AS_TOKEN") ?? ""
|
|
`hs_token` = read("env:SONR_EVENTS_BRIDGE_HS_TOKEN") ?? ""
|
|
`sender_localpart` = read("env:SONR_EVENTS_BRIDGE_SENDER_LOCALPART") ?? ""
|
|
|
|
namespaces = new {
|
|
users = new Listing {
|
|
new {
|
|
exclusive = (read("env:SONR_EVENTS_BRIDGE_USERS_EXCLUSIVE") ?? "true").toBoolean()
|
|
regex = read("env:SONR_EVENTS_BRIDGE_USERS_REGEX") ?? ""
|
|
}
|
|
}
|
|
|
|
aliases = new Listing {
|
|
new {
|
|
exclusive = (read("env:SONR_EVENTS_BRIDGE_ALIASES_EXCLUSIVE") ?? "false").toBoolean()
|
|
regex = read("env:SONR_EVENTS_BRIDGE_ALIASES_REGEX") ?? ""
|
|
}
|
|
}
|
|
|
|
rooms = new Listing {}
|
|
}
|
|
}
|