You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@trafficcontrol.apache.org by oc...@apache.org on 2023/04/28 18:03:53 UTC

[trafficcontrol] branch master updated (43e0af1f9e -> 39f4019e73)

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

ocket8888 pushed a change to branch master
in repository https://gitbox.apache.org/repos/asf/trafficcontrol.git


    from 43e0af1f9e Api contract server capabilities (#7448)
     add 39f4019e73 Kannan victory 1 - statuses table, details (#7358)

No new revisions were added by this update.

Summary of changes:
 .../traffic-portal/nightwatch/globals/globals.ts   |  19 +++
 .../nightwatch/page_objects/common.ts              |   1 +
 .../typeDetail.ts => statuses/statusDetail.ts}     |  11 +-
 .../regionsTable.ts => statuses/statusesTable.ts}  |  17 ++-
 .../tests/{types => statuses}/detail.spec.ts       |  20 ++-
 .../tests/{users/tenant => statuses}/table.spec.ts |   4 +-
 .../traffic-portal/src/app/api/server.service.ts   |  35 ++++-
 .../src/app/api/testing/server.service.ts          |  56 +++++++-
 .../traffic-portal/src/app/core/core.module.ts     |  14 +-
 .../status-details/status-details.component.html   |  44 ++++++
 .../status-details/status-details.component.scss}  |  19 ++-
 .../status-details.component.spec.ts}              |  50 ++++---
 .../status-details/status-details.component.ts     | 148 ++++++++++++++++++++
 .../statuses-table/statuses-table.component.html}  |  14 +-
 .../statuses-table/statuses-table.component.scss}  |   0
 .../statuses-table.component.spec.ts               | 106 +++++++++++++++
 .../statuses-table/statuses-table.component.ts     | 149 +++++++++++++++++++++
 .../app/shared/navigation/navigation.service.ts    |   7 +-
 18 files changed, 638 insertions(+), 76 deletions(-)
 copy experimental/traffic-portal/nightwatch/page_objects/{types/typeDetail.ts => statuses/statusDetail.ts} (77%)
 copy experimental/traffic-portal/nightwatch/page_objects/{cacheGroups/regionsTable.ts => statuses/statusesTable.ts} (69%)
 copy experimental/traffic-portal/nightwatch/tests/{types => statuses}/detail.spec.ts (67%)
 copy experimental/traffic-portal/nightwatch/tests/{users/tenant => statuses}/table.spec.ts (91%)
 create mode 100644 experimental/traffic-portal/src/app/core/statuses/status-details/status-details.component.html
 copy experimental/traffic-portal/src/app/core/{cdns/cdn-detail/cdn-detail.component.scss => statuses/status-details/status-details.component.scss} (73%)
 copy experimental/traffic-portal/src/app/core/{servers/phys-loc/detail/phys-loc-detail.component.spec.ts => statuses/status-details/status-details.component.spec.ts} (60%)
 create mode 100644 experimental/traffic-portal/src/app/core/statuses/status-details/status-details.component.ts
 copy experimental/traffic-portal/src/app/core/{cache-groups/regions/table/regions-table.component.html => statuses/statuses-table/statuses-table.component.html} (63%)
 copy experimental/traffic-portal/src/app/core/{change-logs/last-days/last-days.component.scss => statuses/statuses-table/statuses-table.component.scss} (100%)
 create mode 100644 experimental/traffic-portal/src/app/core/statuses/statuses-table/statuses-table.component.spec.ts
 create mode 100644 experimental/traffic-portal/src/app/core/statuses/statuses-table/statuses-table.component.ts