]> git.proxmox.com Git - ceph.git/blob - ceph/src/pybind/mgr/dashboard/frontend/cypress/e2e/common/urls.po.ts
6f7316f98f59e9a1c8a44c7d98ed88d40b7bb787
[ceph.git] / ceph / src / pybind / mgr / dashboard / frontend / cypress / e2e / common / urls.po.ts
1 import { PageHelper } from '../page-helper.po';
2
3 export class UrlsCollection extends PageHelper {
4 pages = {
5 // Cluster expansion
6 welcome: { url: '#/expand-cluster', id: 'cd-create-cluster' },
7
8 // Landing page
9 dashboard: { url: '#/dashboard', id: 'cd-dashboard' },
10
11 // Hosts
12 hosts: { url: '#/hosts', id: 'cd-hosts' },
13 'add hosts': { url: '#/hosts/(modal:add)', id: 'cd-host-form' },
14
15 // Services
16 services: { url: '#/services', id: 'cd-services' },
17 'create services': { url: '#/services/(modal:create)', id: 'cd-service-form' },
18
19 // Physical Disks
20 'physical disks': { url: '#/inventory', id: 'cd-inventory' },
21
22 // Monitors
23 monitors: { url: '#/monitor', id: 'cd-monitor' },
24
25 // OSDs
26 osds: { url: '#/osd', id: 'cd-osd-list' },
27 'create osds': { url: '#/osd/create', id: 'cd-osd-form' },
28
29 // Configuration
30 configuration: { url: '#/configuration', id: 'cd-configuration' },
31
32 // Crush Map
33 'crush map': { url: '#/crush-map', id: 'cd-crushmap' },
34
35 // Mgr modules
36 'mgr-modules': { url: '#/mgr-modules', id: 'cd-mgr-module-list' },
37
38 // Logs
39 logs: { url: '#/logs', id: 'cd-logs' },
40
41 // RGW Daemons
42 'rgw daemons': { url: '#/rgw/daemon', id: 'cd-rgw-daemon-list' },
43
44 // CephFS
45 cephfs: { url: '#/cephfs', id: 'cd-cephfs-list' },
46 'create cephfs': { url: '#/cephfs/create', id: 'cd-cephfs-form' }
47 };
48 }