You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@superset.apache.org by wi...@apache.org on 2020/11/12 21:28:44 UTC

[incubator-superset] branch master updated (1dc4c47 -> 12cb27f)

This is an automated email from the ASF dual-hosted git repository.

willbarrett pushed a change to branch master
in repository https://gitbox.apache.org/repos/asf/incubator-superset.git.


    from 1dc4c47  fix(dashboard): ordering for add chart widget (#11672)
     add 12cb27f  feat: new reports models api (#11606)

No new revisions were added by this update.

Summary of changes:
 superset/app.py                                    |   6 +
 superset/config.py                                 |   2 +
 superset/dao/base.py                               |   4 +-
 superset/models/reports.py                         |  15 +-
 superset/models/slice.py                           |   2 +-
 {tests/security => superset/reports}/__init__.py   |   0
 superset/{annotation_layers => reports}/api.py     | 209 +++--
 .../reports/commands}/__init__.py                  |   0
 superset/reports/commands/base.py                  |  63 ++
 .../commands/bulk_delete.py                        |  22 +-
 superset/reports/commands/create.py                |  98 +++
 .../annotations => reports}/commands/delete.py     |  26 +-
 superset/reports/commands/exceptions.py            | 112 +++
 superset/reports/commands/update.py                | 101 +++
 superset/reports/dao.py                            | 137 ++++
 .../annotations => reports}/filters.py             |  11 +-
 .../security => superset/reports/logs}/__init__.py |   0
 superset/reports/logs/api.py                       | 196 +++++
 superset/{queries => reports/logs}/schemas.py      |   9 +-
 superset/reports/schemas.py                        | 209 +++++
 superset/views/base_api.py                         |  24 +-
 tests/{security => reports}/__init__.py            |   0
 tests/reports/api_tests.py                         | 864 +++++++++++++++++++++
 tests/superset_test_config.py                      |   1 +
 24 files changed, 1988 insertions(+), 123 deletions(-)
 copy {tests/security => superset/reports}/__init__.py (100%)
 copy superset/{annotation_layers => reports}/api.py (63%)
 copy {tests/security => superset/reports/commands}/__init__.py (100%)
 create mode 100644 superset/reports/commands/base.py
 copy superset/{queries/saved_queries => reports}/commands/bulk_delete.py (72%)
 create mode 100644 superset/reports/commands/create.py
 copy superset/{annotation_layers/annotations => reports}/commands/delete.py (70%)
 create mode 100644 superset/reports/commands/exceptions.py
 create mode 100644 superset/reports/commands/update.py
 create mode 100644 superset/reports/dao.py
 copy superset/{annotation_layers/annotations => reports}/filters.py (77%)
 copy {tests/security => superset/reports/logs}/__init__.py (100%)
 create mode 100644 superset/reports/logs/api.py
 copy superset/{queries => reports/logs}/schemas.py (74%)
 create mode 100644 superset/reports/schemas.py
 copy tests/{security => reports}/__init__.py (100%)
 create mode 100644 tests/reports/api_tests.py