INFRA-2866 | removing houston user check from get user products API (#408)

This commit is contained in:
Shashank Shekhar
2024-03-22 17:17:42 +05:30
committed by GitHub
parent 256fd54d36
commit b88006f469

View File

@@ -215,7 +215,7 @@ func (s *Server) incidentClientHandlerV2(houstonGroup *gin.RouterGroup) {
houstonGroup.POST("/link-jira-to-incident", incidentHandler.HandleJiraLinking)
houstonGroup.POST("/unlink-jira-from-incident", incidentHandler.HandleJiraUnLinking)
houstonGroup.GET("/get-jira-statuses", incidentHandler.HandleGetJiraStatuses)
houstonGroup.GET("/user/products", authService.IfValidHoustonUser(incidentHandler.HandleGetProductsOfUser))
houstonGroup.GET("/user/products", incidentHandler.HandleGetProductsOfUser)
houstonGroup.GET("/product/reporting-and-responder-teams", incidentHandler.HandleGetReportingAndResponderTeams)
}