forked from ebhomengo/niki
1
0
Fork 0

Merge pull request 'fix(delivery): fix swagger sending request to the wrong host and port' (#151) from stage/ruhollahh01/fix-swagger-host-issue into develop

Reviewed-on: ebhomengo/niki#151
This commit is contained in:
hossein 2024-09-04 15:09:08 +00:00
commit 2ebe233d8f
1 changed files with 2 additions and 3 deletions

View File

@ -67,7 +67,7 @@ func (s Server) Serve() {
func (s Server) RegisterRoutes() {
s.Router.Use(middleware.RequestID())
s.Router.Use(middleware.Recover())
registerSwagger(s.Router, s.config)
registerSwagger(s.Router)
// Routes
s.Router.GET("/health-check", s.healthCheck)
@ -81,12 +81,11 @@ func (s Server) RegisterRoutes() {
s.agentKindBoxHandler.SetRoutes(s.Router)
}
func registerSwagger(s *echo.Echo, c config.Config) {
func registerSwagger(s *echo.Echo) {
// TODO: move this to a better place and make it more dynamic and configurable
docs.SwaggerInfo.Title = "NIKI API"
docs.SwaggerInfo.Description = "This is the API documentation for the NIKI project"
docs.SwaggerInfo.Version = "1.0.0"
docs.SwaggerInfo.Host = fmt.Sprintf("localhost:%d", c.HTTPServer.Port)
s.GET("/swagger/*any", echoSwagger.WrapHandler)
}