(no commit message provided)

This commit is contained in:
Prad Nukala
2024-07-05 22:20:13 -04:00
committed by Prad Nukala (aider)
commit 5fd43dfd6b
457 changed files with 115535 additions and 0 deletions
+25
View File
@@ -0,0 +1,25 @@
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 {}
}
}