Skip to content

Commit

Permalink
Fixing endpoint in create_quiz.rs file
Browse files Browse the repository at this point in the history
  • Loading branch information
Gerson2102 committed Oct 25, 2024
1 parent 6c8c067 commit 893b3b0
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/endpoints/admin/quiz/create_quiz.rs
Original file line number Diff line number Diff line change
Expand Up @@ -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()),
Expand Down

0 comments on commit 893b3b0

Please sign in to comment.