add endpoint allow_code

This commit is contained in:
Cayo Puigdefabregas 2023-12-11 15:52:54 +01:00
parent 7b46501289
commit 69f1b003bf
1 changed files with 2 additions and 0 deletions

View File

@ -11,4 +11,6 @@ urlpatterns = [
name="verify"),
path('authorize', views.AuthorizeView.as_view(),
name="authorize"),
path('allow_code', views.AllowCodeView.as_view(),
name="allow_code"),
]