this repo has no description
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

fix display of DisableRequestCrawl

+1 -1
+1 -1
cmd/relay/handlers_admin.go
··· 42 42 43 43 func (s *Service) handleAdminGetSubsEnabled(c echo.Context) error { 44 44 return c.JSON(http.StatusOK, map[string]bool{ 45 - "enabled": s.config.DisableRequestCrawl, 45 + "enabled": !s.config.DisableRequestCrawl, 46 46 }) 47 47 } 48 48