]> git.apps.os.sepia.ceph.com Git - ceph.git/commit
mgr/dashboard: clean-up controllers
authorErnesto Puerta <epuertat@redhat.com>
Tue, 7 Sep 2021 15:07:48 +0000 (17:07 +0200)
committerNizamudeen A <nia@redhat.com>
Thu, 14 Oct 2021 17:32:36 +0000 (23:02 +0530)
commit9f85191aa5785ce8ec519bc8aeef5a93fd167b70
treeb15cc9494b789e6056d420b9bd1bd46a24558a0d
parentc84f167a8bf604319b93c3226e189ba87c88cd7b
mgr/dashboard: clean-up controllers

Fixes: https://tracker.ceph.com/issues/52589
Signed-off-by: Ernesto Puerta <epuertat@redhat.com>
 Conflicts:
src/pybind/mgr/dashboard/CMakeLists.txt
   - Added some testts in the CephTest section
60 files changed:
src/pybind/mgr/dashboard/CMakeLists.txt
src/pybind/mgr/dashboard/controllers/__init__.py
src/pybind/mgr/dashboard/controllers/_api_router.py [new file with mode: 0644]
src/pybind/mgr/dashboard/controllers/_auth.py [new file with mode: 0644]
src/pybind/mgr/dashboard/controllers/_base_controller.py [new file with mode: 0644]
src/pybind/mgr/dashboard/controllers/_docs.py [new file with mode: 0644]
src/pybind/mgr/dashboard/controllers/_endpoint.py [new file with mode: 0644]
src/pybind/mgr/dashboard/controllers/_helpers.py [new file with mode: 0644]
src/pybind/mgr/dashboard/controllers/_permissions.py [new file with mode: 0644]
src/pybind/mgr/dashboard/controllers/_rest_controller.py [new file with mode: 0644]
src/pybind/mgr/dashboard/controllers/_router.py [new file with mode: 0644]
src/pybind/mgr/dashboard/controllers/_task.py [new file with mode: 0644]
src/pybind/mgr/dashboard/controllers/_ui_router.py [new file with mode: 0644]
src/pybind/mgr/dashboard/controllers/auth.py
src/pybind/mgr/dashboard/controllers/cephfs.py
src/pybind/mgr/dashboard/controllers/cluster_configuration.py
src/pybind/mgr/dashboard/controllers/crush_rule.py
src/pybind/mgr/dashboard/controllers/docs.py
src/pybind/mgr/dashboard/controllers/erasure_code_profile.py
src/pybind/mgr/dashboard/controllers/feedback.py [new file with mode: 0644]
src/pybind/mgr/dashboard/controllers/frontend_logging.py
src/pybind/mgr/dashboard/controllers/grafana.py
src/pybind/mgr/dashboard/controllers/health.py
src/pybind/mgr/dashboard/controllers/home.py
src/pybind/mgr/dashboard/controllers/host.py
src/pybind/mgr/dashboard/controllers/iscsi.py
src/pybind/mgr/dashboard/controllers/logs.py
src/pybind/mgr/dashboard/controllers/mgr_modules.py
src/pybind/mgr/dashboard/controllers/monitor.py
src/pybind/mgr/dashboard/controllers/nfsganesha.py
src/pybind/mgr/dashboard/controllers/orchestrator.py
src/pybind/mgr/dashboard/controllers/osd.py
src/pybind/mgr/dashboard/controllers/perf_counters.py
src/pybind/mgr/dashboard/controllers/pool.py
src/pybind/mgr/dashboard/controllers/prometheus.py
src/pybind/mgr/dashboard/controllers/rbd.py
src/pybind/mgr/dashboard/controllers/rbd_mirroring.py
src/pybind/mgr/dashboard/controllers/rgw.py
src/pybind/mgr/dashboard/controllers/role.py
src/pybind/mgr/dashboard/controllers/saml2.py
src/pybind/mgr/dashboard/controllers/service.py
src/pybind/mgr/dashboard/controllers/settings.py
src/pybind/mgr/dashboard/controllers/summary.py
src/pybind/mgr/dashboard/controllers/task.py
src/pybind/mgr/dashboard/controllers/telemetry.py
src/pybind/mgr/dashboard/controllers/user.py
src/pybind/mgr/dashboard/module.py
src/pybind/mgr/dashboard/openapi.yaml
src/pybind/mgr/dashboard/plugins/feature_toggles.py
src/pybind/mgr/dashboard/plugins/motd.py
src/pybind/mgr/dashboard/tests/__init__.py
src/pybind/mgr/dashboard/tests/test_api_auditing.py
src/pybind/mgr/dashboard/tests/test_controllers.py
src/pybind/mgr/dashboard/tests/test_docs.py
src/pybind/mgr/dashboard/tests/test_exceptions.py
src/pybind/mgr/dashboard/tests/test_feature_toggles.py
src/pybind/mgr/dashboard/tests/test_host.py
src/pybind/mgr/dashboard/tests/test_rest_tasks.py
src/pybind/mgr/dashboard/tests/test_tools.py
src/pybind/mgr/dashboard/tests/test_versioning.py