add presence options to show-config admin cmd
Signed-off-by: strawberry <strawberry@puppygock.gay>
This commit is contained in:
parent
0252e9c2c7
commit
8d42351e34
1 changed files with 12 additions and 0 deletions
|
@ -214,6 +214,18 @@ impl fmt::Display for Config {
|
||||||
),
|
),
|
||||||
("Allow encryption", &self.allow_encryption.to_string()),
|
("Allow encryption", &self.allow_encryption.to_string()),
|
||||||
("Allow federation", &self.allow_federation.to_string()),
|
("Allow federation", &self.allow_federation.to_string()),
|
||||||
|
(
|
||||||
|
"Allow incoming federated presence requests (updates)",
|
||||||
|
&self.allow_incoming_presence.to_string(),
|
||||||
|
),
|
||||||
|
(
|
||||||
|
"Allow outgoing federated presence requests (updates)",
|
||||||
|
&self.allow_outgoing_presence.to_string(),
|
||||||
|
),
|
||||||
|
(
|
||||||
|
"Allow local presence requests (updates)",
|
||||||
|
&self.allow_local_presence.to_string(),
|
||||||
|
),
|
||||||
(
|
(
|
||||||
"Allow device name federation",
|
"Allow device name federation",
|
||||||
&self.allow_device_name_federation.to_string(),
|
&self.allow_device_name_federation.to_string(),
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue