Skip to content

Commit

Permalink
Merge pull request #1277 from Amsterdam/fix/128772-remove-endpoint
Browse files Browse the repository at this point in the history
Fix/128772 remove endpoint
  • Loading branch information
NvdLaan authored Oct 21, 2024
2 parents 96e4e55 + 0077688 commit e45c879
Show file tree
Hide file tree
Showing 4 changed files with 0 additions and 49 deletions.
25 changes: 0 additions & 25 deletions app/apps/openzaak/tests/tests_views.py

This file was deleted.

16 changes: 0 additions & 16 deletions app/apps/openzaak/views.py

This file was deleted.

1 change: 0 additions & 1 deletion app/apps/users/views.py
Original file line number Diff line number Diff line change
Expand Up @@ -82,7 +82,6 @@ def post(self, request, *args, **kwargs):
except Exception as e:
LOGGER.error("Could not authenticate: {}".format(str(e)))
return HttpResponseBadRequest("Could not authenticate")

try:
refresh = RefreshToken.for_user(user)
except Exception as e:
Expand Down
7 changes: 0 additions & 7 deletions app/config/urls.py
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,6 @@
from apps.decisions.views import DecisionTypeViewSet, DecisionViewSet
from apps.fines.views import FinesViewSet
from apps.health.health_checks import is_healthy
from apps.openzaak.views import ReceiveNotificationView
from apps.quick_decisions.views import QuickDecisionTypeViewSet, QuickDecisionViewSet
from apps.schedules.views import (
ActionViewSet,
Expand Down Expand Up @@ -116,12 +115,6 @@ def get(self, request, *args, **kwargs):
IsAuthorizedView.as_view(),
name="is-authorized",
),
# Endpoint to receive the notification
path(
"api/v1/openzaak/callbacks",
ReceiveNotificationView.as_view(),
name="notification-callback",
),
path("health/", include("health_check.urls")),
path("startup/", is_healthy),
re_path(r"^$", view=MyView.as_view(), name="index"),
Expand Down

0 comments on commit e45c879

Please sign in to comment.