Remove token validation from Core

Causes issues for other platforms.
content-hub
Frode Petterson 2020-11-12 16:01:37 +01:00
parent 8a29796cab
commit fdd2a618bc
1 changed files with 1 additions and 9 deletions

View File

@ -3862,19 +3862,11 @@ class H5PCore {
* Sync content with content hub
*
* @param integer $hubId Content hub id
* @param string $token CSRF token
* @param string $exportPath Export path where .h5p for content can be found
*
* @return bool
*/
public function hubSyncContent($hubId, $token, $exportPath) {
if (!self::validToken('content_hub_token', $token)) {
$msg = $this->h5pF->t('Could not sync content because token was invalid. Please try again.');
$this->h5pF->setErrorMessage($msg);
return false;
}
public function hubSyncContent($hubId, $exportPath) {
$headers = array(
'Authorization' => $this->hubGetAuthorizationHeader(),
'Accept' => 'application/json',