feat(router): add endpoint for listing connector features (#6612)

Co-authored-by: hyperswitch-bot[bot] <148525504+hyperswitch-bot[bot]@users.noreply.github.com>
Co-authored-by: Pa1NarK <69745008+pixincreate@users.noreply.github.com>
This commit is contained in:
AkshayaFoiger
2024-12-24 14:37:19 +05:30
committed by GitHub
parent 5e4eded8fa
commit a423ff53d3
124 changed files with 1490 additions and 252 deletions

View File

@ -192,7 +192,8 @@ pub fn mk_app(
.service(routes::ConnectorOnboarding::server(state.clone()))
.service(routes::Verify::server(state.clone()))
.service(routes::Analytics::server(state.clone()))
.service(routes::WebhookEvents::server(state.clone()));
.service(routes::WebhookEvents::server(state.clone()))
.service(routes::FeatureMatrix::server(state.clone()));
}
}