user_wcf ======== Owncloud user backend for the Woltlab Community Framework (WCF) used by Woltlab Burning Board (WBB3) To use this backend you need to enable the app in OwnCloud, edit config/config.php and then add the user backend to your configuration file: ```php $CONFIG = array ( // [...] 'user_backends' => array ( array ( 'class' => 'OCA\\user_wcf\\User_WCF', 'arguments' => array (), ), ), ); ```