tangle


git clone https://radroots.dev/git/tangle.git
Log | Files | Refs | README | LICENSE

commit 75f978e5a839588827e877edd24437caf5a1d2aa
parent ce63a11a05af95a61063984bb82cd006b2282cd3
Author: triesap <tyson@radroots.org>
Date:   Sun, 14 Jun 2026 08:43:43 -0700

config: make strict group policy explicit

Diffstat:
Mcrates/tangle_runtime/src/config.rs | 2++
1 file changed, 2 insertions(+), 0 deletions(-)

diff --git a/crates/tangle_runtime/src/config.rs b/crates/tangle_runtime/src/config.rs @@ -607,6 +607,8 @@ mod tests { PocketSyncPolicy::FlushOnShutdown ); assert!(config.groups().enabled()); + assert!(!config.groups().policy().public_join()); + assert!(!config.groups().policy().invites_enabled()); assert_eq!(config.auth_ttl_seconds(), 300); assert_eq!(config.auth_created_at_skew_seconds(), 600); assert_eq!(config.limits().max_message_length(), 1_048_576);