This commit is contained in:
2026-07-04 11:07:24 -06:00
parent deae73cd88
commit 4743b0398a
2 changed files with 31 additions and 0 deletions

View File

@@ -7,6 +7,7 @@ from ..views.admin import (
ProblemAPI,
ProblemFlowchartAIGen,
ProblemVisibleAPI,
SQLTestCaseAIGenAPI,
SQLTestCasePreviewAPI,
SQLTestCaseScriptsAPI,
StuckProblemsAPI,
@@ -18,6 +19,7 @@ urlpatterns = [
path("test_case", TestCaseAPI.as_view()),
path("sql_test_case_preview", SQLTestCasePreviewAPI.as_view()),
path("sql_test_case_scripts", SQLTestCaseScriptsAPI.as_view()),
path("sql_test_case_ai_gen", SQLTestCaseAIGenAPI.as_view()),
path("problem", ProblemAPI.as_view()),
path("problem/visible", ProblemVisibleAPI.as_view()),
path("problem/stuck", StuckProblemsAPI.as_view()),