mirror of
https://git.asonix.dog/asonix/relay.git
synced 2024-11-15 22:21:00 +00:00
Only show open_registrations: false when restricted mode is enabled
This commit is contained in:
parent
5488acb59d
commit
662620be46
1 changed files with 3 additions and 1 deletions
|
@ -44,6 +44,8 @@ pub(crate) async fn route(
|
|||
.map(|s| s.to_owned())
|
||||
.collect();
|
||||
|
||||
let open_registrations = !config.restricted_mode();
|
||||
|
||||
web::Json(NodeInfo {
|
||||
version: NodeInfoVersion,
|
||||
software: Software {
|
||||
|
@ -55,7 +57,7 @@ pub(crate) async fn route(
|
|||
inbound: vec![],
|
||||
outbound: vec![],
|
||||
},
|
||||
open_registrations: false,
|
||||
open_registrations,
|
||||
usage: Usage {
|
||||
users: Users {
|
||||
total: 1,
|
||||
|
|
Loading…
Reference in a new issue