Add no-cache header to pixel tracker image

This commit is contained in:
Kailash Nadh 2018-11-29 15:27:21 +05:30
parent 09b09d1378
commit b7d5a4d8c8
1 changed files with 1 additions and 0 deletions

View File

@ -132,6 +132,7 @@ func handleRegisterCampaignView(c echo.Context) error {
}
}
c.Response().Header().Set("Cache-Control", "no-cache")
return c.Blob(http.StatusOK, "image/png", pixelPNG)
}