Add url for internal problem votes

This commit is contained in:
cuom1999 2023-11-01 21:26:27 -05:00
parent 87d7484a89
commit 45587d0884

View file

@ -1100,6 +1100,11 @@ urlpatterns = [
internal.InternalProblem.as_view(),
name="internal_problem",
),
url(
r"^problem_votes$",
internal.get_problem_votes,
name="internal_problem_votes",
),
url(
r"^request_time$",
internal.InternalRequestTime.as_view(),