From 893b3b0ea22746e32dd90d92b41c9e94a4e4603f Mon Sep 17 00:00:00 2001 From: Gerson2102 Date: Thu, 24 Oct 2024 11:20:05 -0600 Subject: [PATCH] Fixing endpoint in create_quiz.rs file --- src/endpoints/admin/quiz/create_quiz.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/endpoints/admin/quiz/create_quiz.rs b/src/endpoints/admin/quiz/create_quiz.rs index 89acec5..288d2d5 100644 --- a/src/endpoints/admin/quiz/create_quiz.rs +++ b/src/endpoints/admin/quiz/create_quiz.rs @@ -83,7 +83,7 @@ pub async fn handler( cta: body.cta.clone(), quest_id: body.quest_id.clone(), id: next_id.clone(), - verify_endpoint: "/quests/verify_quiz".to_string(), + verify_endpoint: "quests/verify_quiz".to_string(), verify_endpoint_type: "quiz".to_string(), quiz_name: Some(next_quiz_id.clone() as i64), task_type: Some("quiz".to_string()),