Add X-Pagination-Next y X-Pagination-Prev to Access-Control-Expose-Headers response header

remotes/origin/enhancement/email-actions
David Barragán Merino 2015-06-16 14:21:27 +02:00
parent a86b741edb
commit 5d3f3fb9b0
1 changed files with 2 additions and 2 deletions

View File

@ -25,8 +25,8 @@ COORS_ALLOWED_HEADERS = ["content-type", "x-requested-with",
"x-session-id"]
COORS_ALLOWED_CREDENTIALS = True
COORS_EXPOSE_HEADERS = ["x-pagination-count", "x-paginated", "x-paginated-by",
"x-paginated-by", "x-pagination-current", "x-site-host",
"x-site-register"]
"x-pagination-current", "x-pagination-next", "x-pagination-prev",
"x-site-host", "x-site-register"]
class CoorsMiddleware(object):