Skip to content

Commit b197eac

Browse files
authored
Merge pull request #428 from NHSDigital/enable-notifications-urls
Enable notifications namespace for callback endpoint.
2 parents 69d1172 + ef5b428 commit b197eac

File tree

2 files changed

+8
-1
lines changed

2 files changed

+8
-1
lines changed

manage_breast_screening/core/urls.py

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -36,6 +36,13 @@
3636
namespace="mammograms",
3737
),
3838
),
39+
path(
40+
"notifications/",
41+
include(
42+
"manage_breast_screening.notifications.urls",
43+
namespace="notifications",
44+
),
45+
),
3946
path(
4047
"participants/",
4148
include("manage_breast_screening.participants.urls", namespace="participants"),

manage_breast_screening/notifications/urls.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66

77
urlpatterns = [
88
path(
9-
"/message-status/create",
9+
"message-status/create",
1010
views.create_message_status,
1111
name="create_message_status",
1212
),

0 commit comments

Comments
 (0)