We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent b20d003 commit ecbd125Copy full SHA for ecbd125
1 file changed
backend/src/api/public/v1/index.ts
@@ -15,11 +15,7 @@ export function v1Router(): Router {
15
16
router.use('/members', oauth2Middleware(AUTH0_CONFIG), membersRouter())
17
router.use('/organizations', oauth2Middleware(AUTH0_CONFIG), organizationsRouter())
18
- router.use(
19
- '/affiliations',
20
- staticApiKeyMiddleware(),
21
- memberOrganizationAffiliationsRouter(),
22
- )
+ router.use('/affiliations', staticApiKeyMiddleware(), memberOrganizationAffiliationsRouter())
23
24
router.use(() => {
25
throw new NotFoundError()
0 commit comments