public function __construct($ensureAuthentified = true)
 {
     parent::__construct($ensureAuthentified);
     $this->etherpadURLApi = Config::get('etherpad-url');
     $this->etherpadURLPads = Config::get('etherpad-url-pads');
     $this->etherpadApiKey = Config::get('etherpad-apikey');
 }
 /**
  * Overcharging RestEndpoint constructor to allow get translation
  * even if not connected
  * 
  * @param type $ensureAuthentified
  */
 public function __construct()
 {
     parent::__construct(false);
 }