Skip to content

Commit

Permalink
Added route for Parichay
Browse files Browse the repository at this point in the history
  • Loading branch information
karthik-tarento committed Jul 30, 2022
1 parent 4361af5 commit 5a0c955
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions src/publicApi_v8/publicApiV8.ts
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
import express from 'express'
import { CONSTANTS } from '../utils/env'
import { proxyCreatorRoute } from '../utils/proxyCreator'
import { parichayAuth } from './parichayAuth'
import { workallocationPublic } from './workallocationPublic'

export const publicApiV8 = express.Router()
Expand All @@ -17,3 +18,5 @@ publicApiV8.use('/assets',
publicApiV8.use('/workallocation', workallocationPublic)

publicApiV8.use('/org/v1/list', proxyCreatorRoute(express.Router(), CONSTANTS.KONG_API_BASE + '/org/v1/list'))

publicApiV8.use('/parichay', parichayAuth)

0 comments on commit 5a0c955

Please sign in to comment.