squalou edited a comment on issue #14810:
URL: https://github.com/apache/superset/issues/14810#issuecomment-847716086
after reviewing the sources I see a
```python
if self.config["CSV_EXTENSIONS"].intersection(
self.config["ALLOWED_EXTENSIONS"]
):
# etc...
if self.config["EXCEL_EXTENSIONS"].intersection(
self.config["ALLOWED_EXTENSIONS"]
):
# etc...
```
So, using configuration, it works, I added this in superset_config.py
```python
ALLOWED_EXTENSIONS = set([])
```
And the menu is now clean.
Feel free to close the issue. (even if a dynamic behavior would be nice,
it's clearly not important)
--
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
For queries about this service, please contact Infrastructure at:
[email protected]
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]