Disable or enable registration within the pleroma frontend
This commit is contained in:
parent
aa5feabc51
commit
ea0af2d1e1
|
@ -363,8 +363,12 @@ function pleroma_disable_registrations {
|
||||||
--yesno $"\nDo you wish to disable new registrations?" 10 60
|
--yesno $"\nDo you wish to disable new registrations?" 10 60
|
||||||
sel=$?
|
sel=$?
|
||||||
case $sel in
|
case $sel in
|
||||||
0) sed -i 's|registrations_open:.*|registrations_open: false|g' $PLEROMA_DIR/config/config.exs;;
|
0) sed -i 's|registrations_open:.*|registrations_open: false|g' $PLEROMA_DIR/config/config.exs
|
||||||
1) sed -i 's|registrations_open:.*|registrations_open: true|g' $PLEROMA_DIR/config/config.exs;;
|
sed -i 's|"registrationOpen":.*|"registrationOpen": false|g' $PLEROMA_DIR/priv/static/static/config.json
|
||||||
|
;;
|
||||||
|
1) sed -i 's|registrations_open:.*|registrations_open: true|g' $PLEROMA_DIR/config/config.exs
|
||||||
|
sed -i 's|"registrationOpen":.*|"registrationOpen": true|g' $PLEROMA_DIR/priv/static/static/config.json
|
||||||
|
;;
|
||||||
255) return;;
|
255) return;;
|
||||||
esac
|
esac
|
||||||
pleroma_recompile
|
pleroma_recompile
|
||||||
|
|
Loading…
Reference in New Issue