Skip to content

Commit

Permalink
adding column names (#175)
Browse files Browse the repository at this point in the history
  • Loading branch information
fcollman authored Nov 22, 2024
1 parent 7470354 commit e2666fb
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion materializationengine/app.py
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ def create_app(config_name: str = None):
instance_relative_config=True,
template_folder="../templates",
)
CORS(app, expose_headers="WWW-Authenticate")
CORS(app, expose_headers=["WWW-Authenticate", "column_names"])
logging.basicConfig(level=logging.INFO)
app.json_encoder = AEEncoder
app.config["RESTX_JSON"] = {"cls": AEEncoder}
Expand Down

0 comments on commit e2666fb

Please sign in to comment.