Replaced TODOs

This commit is contained in:
Boy132 2021-03-12 16:03:27 +01:00 committed by GitHub
parent 2f892c0bba
commit 42aa8b99bd
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -62,7 +62,7 @@ If possible you should use the panel to update your 2FA settings. If you can't a
```sql
mysql -u root -p
UPDATE panel.settings SET value = 0 WHERE `key` = 'TODO';
UPDATE panel.settings SET value = 0 WHERE `key` = 'settings::pterodactyl:auth:2fa_required';
```
### Disable 2FA for a specific user
@ -70,5 +70,5 @@ UPDATE panel.settings SET value = 0 WHERE `key` = 'TODO';
Run the following command in your `/var/www/pterodactyl` directory.
``` bash
php artisan p:TODO
php artisan p:user:disable2fa
```