Skip to content

Commit

Permalink
Merge pull request #66 from souravbhowmik1999/PrathamApiWhitlisting
Browse files Browse the repository at this point in the history
White listed pratham specific microservices import user api
  • Loading branch information
Shubham4026 authored Nov 27, 2024
2 parents af281bd + 47df818 commit 7c589e4
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion src/common/middleware/apiConfig.ts
Original file line number Diff line number Diff line change
Expand Up @@ -163,6 +163,10 @@ export const apiList = {
'/user/v1/auth/login': createRouteObject({
post: {},
}),
//public api
'/prathamservice/v1/import-user': createRouteObject({
post: {},
}),
//public api for run cron job for send event notification
'/prathamservice/v1/cronjob': createRouteObject({
get: {},
Expand Down Expand Up @@ -1554,7 +1558,8 @@ export const publicAPI = [
'/action/composite/v3/search',
'/api/content/v1/read/:identifier',
'/api/course/v1/hierarchy/:identifier',
'/prathamservice/v1/cronjob'
'/prathamservice/v1/cronjob',
'/prathamservice/v1/import-user'
];

// api which required academic year
Expand Down

0 comments on commit 7c589e4

Please sign in to comment.