Skip to content

Commit

Permalink
Fix wrapper not generating from proxy api
Browse files Browse the repository at this point in the history
  • Loading branch information
devang1281 committed Aug 27, 2024
1 parent 10ed30c commit 9ecb3b2
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion classes/local/api/tracker.php
Original file line number Diff line number Diff line change
Expand Up @@ -105,7 +105,7 @@ private static function create_sb_wrapper($proctoring_payload, $quiz)
$auth_payload->password = trim(get_config('quizaccess_proctor', 'proview_admin_password'));
$auth_response = self::generate_auth_token($api_base_url, $auth_payload);
$auth_token = $auth_response['access_token'];
$url = $api_base_url . '/v1/wrapper/create';
$url = $api_base_url . '/proview/wrapper/create';
$data = array(
'session_external_id' => $proctoring_payload->session_id,
'attendee_external_id' => $proctoring_payload->profile_id,
Expand Down
4 changes: 2 additions & 2 deletions version.php
Original file line number Diff line number Diff line change
Expand Up @@ -28,9 +28,9 @@

defined('MOODLE_INTERNAL') || die;

$plugin->version = 2024082601;
$plugin->version = 2024082604;
$plugin->requires = 2020061500;
$plugin->release = '3.3.5 (Build: 2024082601)';
$plugin->release = '3.3.5 (Build: 2024082604)';
$plugin->maturity = MATURITY_STABLE;
$plugin->component = 'local_proview';

Expand Down

0 comments on commit 9ecb3b2

Please sign in to comment.