diff options
author | Dmitry Patsura <[email protected]> | 2019-06-20 16:29:48 +0300 |
---|---|---|
committer | Dmitry Patsura <[email protected]> | 2019-06-20 16:29:48 +0300 |
commit | 3b16dd837a203fc4865e94a031b64a83080e12ef (patch) | |
tree | 93838ae9f56525983980a3f76ab60febfdfcf3d7 /service/http/config.go | |
parent | cf02521e1473ea099927e8fff1f0702f2418221d (diff) |
Feature(http): Cors - support exposedHeaders option
Diffstat (limited to 'service/http/config.go')
-rw-r--r-- | service/http/config.go | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/service/http/config.go b/service/http/config.go index 2897d1f7..e2f42626 100644 --- a/service/http/config.go +++ b/service/http/config.go @@ -50,6 +50,7 @@ type CORSMiddlewareConfig struct { AllowedMethods string AllowedHeaders string AllowCredentials *bool + ExposedHeaders string MaxAge int } |