You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
PlexShare/fuel/app/config/panel.php

30 lines
842 B

<?php
return [
// /!\ WARNING /!\
// Using direct mode, exposed your personnal token
// we recommend you to not use it or to not use the owner's TOKEN of the server
'direct_mode' => false,
// Enable/Disabled the registration page
'registration' => true,
// Force use to have an invite code when register
'invitation' => false,
// Limit the number of user connected to server
'queue' => false,
'max_connected' => 0, // need queue true
// Alow anyone to use guest account with retricted permissions
// No download and no watching
'guest' => false,
// Enable/Disabled the achievements
'achievements' => false,
// Allow anyone to add plex server
'add_server' => true,
// Allow user to create sub-account
'sub_accounts' => true,
];