From ade752091f26f358e9b7e940e8ce484c34bbc541 Mon Sep 17 00:00:00 2001 From: brydon1 Date: Fri, 9 Jun 2023 09:36:33 -0400 Subject: [PATCH] Adding register claim endpoint to endpoints file --- src/constants/endpoints.js | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/src/constants/endpoints.js b/src/constants/endpoints.js index ca2c297f..be1ad311 100644 --- a/src/constants/endpoints.js +++ b/src/constants/endpoints.js @@ -125,7 +125,11 @@ const endpoints = { CoveragePolicyInfo: { url: '/coverage/api/v1/coverage/get-policy-information', method: 'POST' -} + }, + RegisterClaim: { + url: '/coverage/api/v1/coverage/register-claim', + method: 'POST' + } }; export { endpoints };