mirror of
https://github.com/sonr-io/sonr.git
synced 2026-08-04 18:31:41 +00:00
(no commit message provided)
This commit is contained in:
@@ -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 {}
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user