specify if registration token is set in show-config

Signed-off-by: strawberry <strawberry@puppygock.gay>
This commit is contained in:
strawberry 2024-03-02 22:17:34 -05:00 committed by June
parent d1b919ed07
commit 023c16e4f4
2 changed files with 11 additions and 4 deletions

View file

@ -126,7 +126,7 @@ allow_guest_registration = false
# No default. # No default.
# prevent_media_downloads_from = ["example.com", "example.local"] # prevent_media_downloads_from = ["example.com", "example.local"]
# Enables open registration. If set to false, no users can register on this # Enables registration. If set to false, no users can register on this
# server. # server.
# If set to true without a token configured, users can register with no form of 2nd- # If set to true without a token configured, users can register with no form of 2nd-
# step only if you set # step only if you set

View file

@ -249,17 +249,24 @@ impl fmt::Display for Config {
"Cleanup interval in seconds", "Cleanup interval in seconds",
&self.cleanup_second_interval.to_string(), &self.cleanup_second_interval.to_string(),
), ),
("Maximum request size", &self.max_request_size.to_string()), ("Maximum request size (bytes)", &self.max_request_size.to_string()),
( (
"Maximum concurrent requests", "Maximum concurrent requests",
&self.max_concurrent_requests.to_string(), &self.max_concurrent_requests.to_string(),
), ),
( (
"Allow registration (open registration)", "Allow registration",
&self.allow_registration.to_string(), &self.allow_registration.to_string(),
), ),
( (
"Allow guest registration", "Registration token",
match self.registration_token {
Some(_) => "set",
None => "not set (open registration!)",
},
),
(
"Allow guest registration (inherently false if allow registration is false)",
&self.allow_guest_registration.to_string(), &self.allow_guest_registration.to_string(),
), ),
( (