1
0
Fork 0
mirror of https://github.com/YunoHost-Apps/conduit_ynh.git synced 2024-09-03 18:16:30 +02:00

Fix config panel booleans

This commit is contained in:
tituspijean 2023-08-13 10:39:21 +02:00 committed by GitHub
parent dfbca12f16
commit 5c1d8da2b7
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -9,14 +9,14 @@ name = "Conduit configuration"
[main.registration.registration]
ask = "Should registration be enabled?"
type = "boolean"
yes = true
no = false
yes = "true"
no = "false"
bind = "allow_registration:/var/www/__APP__/conduit.toml"
[main.registration.disable_federation]
ask = "Disable Federation"
type = "boolean"
yes = true
no = false
yes = "true"
no = "false"
help = "Do not communicate with other homeservers of the Matrix Federation."
bind = "allow_federation:/var/www/__APP__/conduit.toml"