2022-04-29 10:25:12 +02:00
|
|
|
<cnsl-refresh-table
|
|
|
|
[loading]="loading$ | async"
|
|
|
|
(refreshed)="refreshPage()"
|
|
|
|
[dataSize]="dataSource.data.length"
|
feat: console flat navigation, settings (#3581)
* instance routing
* instance naming
* org list
* rm isonsystem
* breadcrumb type
* routing
* instance members
* fragment refresh org
* settings pages
* settings list, sidenav grouping, i18n
* org-settings, policy changes
* lint
* grid
* rename grid
* fallback to general
* cleanup
* general settings, remove cards
* sidenav for settings, label policy
* i18n
* header, nav backbuild
* general, project nav rehaul
* login text background adapt
* org nav anim
* org, instance settings, fix policy layout, roles
* i18n, active route for project
* lint
2022-05-09 15:01:36 +02:00
|
|
|
[emitRefreshOnPreviousRoutes]="['/instance/idp/create']"
|
2022-04-29 10:25:12 +02:00
|
|
|
[timestamp]="idpResult?.details?.viewTimestamp"
|
|
|
|
[selection]="selection"
|
|
|
|
[hideRefresh]="true"
|
|
|
|
>
|
2022-04-28 12:35:02 +02:00
|
|
|
<div actions>
|
2022-04-29 10:25:12 +02:00
|
|
|
<button
|
|
|
|
(click)="deactivateSelectedIdps()"
|
|
|
|
matTooltip="{{ 'IDP.DEACTIVATE' | translate }}"
|
|
|
|
class="margin-right bg-state inactive"
|
|
|
|
mat-stroked-button
|
|
|
|
*ngIf="selection.hasValue()"
|
feat: console flat navigation, settings (#3581)
* instance routing
* instance naming
* org list
* rm isonsystem
* breadcrumb type
* routing
* instance members
* fragment refresh org
* settings pages
* settings list, sidenav grouping, i18n
* org-settings, policy changes
* lint
* grid
* rename grid
* fallback to general
* cleanup
* general settings, remove cards
* sidenav for settings, label policy
* i18n
* header, nav backbuild
* general, project nav rehaul
* login text background adapt
* org nav anim
* org, instance settings, fix policy layout, roles
* i18n, active route for project
* lint
2022-05-09 15:01:36 +02:00
|
|
|
[disabled]="
|
|
|
|
([
|
|
|
|
serviceType === PolicyComponentServiceType.ADMIN
|
|
|
|
? 'iam.idp.write'
|
|
|
|
: serviceType === PolicyComponentServiceType.MGMT
|
|
|
|
? 'org.idp.write'
|
|
|
|
: ''
|
|
|
|
]
|
|
|
|
| hasRole
|
|
|
|
| async) === false
|
|
|
|
"
|
2022-04-29 10:25:12 +02:00
|
|
|
>
|
|
|
|
{{ 'IDP.DEACTIVATE' | translate }}
|
2022-04-28 12:35:02 +02:00
|
|
|
</button>
|
2022-04-29 10:25:12 +02:00
|
|
|
<button
|
|
|
|
(click)="reactivateSelectedIdps()"
|
|
|
|
matTooltip="{{ 'IDP.ACTIVATE' | translate }}"
|
|
|
|
class="bg-state active"
|
|
|
|
mat-stroked-button
|
|
|
|
*ngIf="selection.hasValue()"
|
feat: console flat navigation, settings (#3581)
* instance routing
* instance naming
* org list
* rm isonsystem
* breadcrumb type
* routing
* instance members
* fragment refresh org
* settings pages
* settings list, sidenav grouping, i18n
* org-settings, policy changes
* lint
* grid
* rename grid
* fallback to general
* cleanup
* general settings, remove cards
* sidenav for settings, label policy
* i18n
* header, nav backbuild
* general, project nav rehaul
* login text background adapt
* org nav anim
* org, instance settings, fix policy layout, roles
* i18n, active route for project
* lint
2022-05-09 15:01:36 +02:00
|
|
|
[disabled]="
|
|
|
|
([
|
|
|
|
serviceType === PolicyComponentServiceType.ADMIN
|
|
|
|
? 'iam.idp.write'
|
|
|
|
: serviceType === PolicyComponentServiceType.MGMT
|
|
|
|
? 'org.idp.write'
|
|
|
|
: ''
|
|
|
|
]
|
|
|
|
| hasRole
|
|
|
|
| async) === false
|
|
|
|
"
|
2022-04-29 10:25:12 +02:00
|
|
|
>
|
|
|
|
{{ 'IDP.ACTIVATE' | translate }}
|
2022-04-28 12:35:02 +02:00
|
|
|
</button>
|
2021-03-25 15:47:56 +01:00
|
|
|
|
feat: console flat navigation, settings (#3581)
* instance routing
* instance naming
* org list
* rm isonsystem
* breadcrumb type
* routing
* instance members
* fragment refresh org
* settings pages
* settings list, sidenav grouping, i18n
* org-settings, policy changes
* lint
* grid
* rename grid
* fallback to general
* cleanup
* general settings, remove cards
* sidenav for settings, label policy
* i18n
* header, nav backbuild
* general, project nav rehaul
* login text background adapt
* org nav anim
* org, instance settings, fix policy layout, roles
* i18n, active route for project
* lint
2022-05-09 15:01:36 +02:00
|
|
|
<a
|
|
|
|
[routerLink]="createRouterLink"
|
|
|
|
class="cnsl-action-button"
|
|
|
|
color="primary"
|
|
|
|
mat-raised-button
|
|
|
|
[disabled]="
|
|
|
|
([
|
|
|
|
serviceType === PolicyComponentServiceType.ADMIN
|
|
|
|
? 'iam.idp.write'
|
|
|
|
: serviceType === PolicyComponentServiceType.MGMT
|
|
|
|
? 'org.idp.write'
|
|
|
|
: ''
|
|
|
|
]
|
|
|
|
| hasRole
|
|
|
|
| async) === false
|
|
|
|
"
|
|
|
|
>
|
2022-04-28 12:35:02 +02:00
|
|
|
<mat-icon class="icon">add</mat-icon>{{ 'ACTIONS.NEW' | translate }}
|
|
|
|
</a>
|
|
|
|
</div>
|
feat(console): identity providers and login policies (#722)
* idp list, idp create route
* idp modules, lazy import, i18n, routing
* generic service, i18n
* seperate lockout, age policy component
* seperate component modules
* routing
* enum class
* login policy
* iam policy grid
* login policy providers
* idps login policy
* add idp dialog component
* add idp to loginpolicy
* delete idp config, iam policy grid
* remove idp from loginpolicy
* idp detail component, generic idp create
* lint
* idp detail clientid-secrets, issuer, scopes
* hide clientsecret on update
* rm background style, idp config
* app tooltip fix
* lint
* dont refresh on idp select
* Update console/src/app/modules/idp-create/idp-create.component.html
Co-authored-by: Fabiennne <fabienne.gerschwiler@gmail.com>
Co-authored-by: Fabi <38692350+fgerschwiler@users.noreply.github.com>
2020-09-17 10:22:41 +02:00
|
|
|
|
2022-04-28 12:35:02 +02:00
|
|
|
<div class="table-wrapper">
|
|
|
|
<table class="table" mat-table [dataSource]="dataSource">
|
|
|
|
<ng-container matColumnDef="select">
|
|
|
|
<th mat-header-cell *matHeaderCellDef>
|
2022-04-29 10:25:12 +02:00
|
|
|
<mat-checkbox
|
|
|
|
color="primary"
|
|
|
|
(change)="$event ? masterToggle() : null"
|
2022-04-28 12:35:02 +02:00
|
|
|
[checked]="selection.hasValue() && isAllSelected()"
|
|
|
|
[indeterminate]="selection.hasValue() && !isAllSelected()"
|
2022-04-29 10:25:12 +02:00
|
|
|
[disabled]="serviceType === PolicyComponentServiceType.MGMT"
|
|
|
|
>
|
2022-04-28 12:35:02 +02:00
|
|
|
</mat-checkbox>
|
|
|
|
</th>
|
|
|
|
<td mat-cell *matCellDef="let idp">
|
2022-04-29 10:25:12 +02:00
|
|
|
<mat-checkbox
|
|
|
|
color="primary"
|
|
|
|
(click)="$event.stopPropagation()"
|
|
|
|
class="chbox"
|
2022-04-28 12:35:02 +02:00
|
|
|
[disabled]="serviceType === PolicyComponentServiceType.MGMT && idp?.owner === IDPOwnerType.IDP_OWNER_TYPE_SYSTEM"
|
2022-04-29 10:25:12 +02:00
|
|
|
(change)="$event ? selection.toggle(idp) : null"
|
|
|
|
[checked]="selection.isSelected(idp)"
|
|
|
|
>
|
|
|
|
<img
|
|
|
|
src="../../../assets/images/google.png"
|
|
|
|
*ngIf="idp.stylingType === IDPStylingType.IDPSTYLINGTYPE_GOOGLE"
|
|
|
|
alt="google"
|
|
|
|
/>
|
2022-04-28 12:35:02 +02:00
|
|
|
</mat-checkbox>
|
|
|
|
</td>
|
|
|
|
</ng-container>
|
feat(console): identity providers and login policies (#722)
* idp list, idp create route
* idp modules, lazy import, i18n, routing
* generic service, i18n
* seperate lockout, age policy component
* seperate component modules
* routing
* enum class
* login policy
* iam policy grid
* login policy providers
* idps login policy
* add idp dialog component
* add idp to loginpolicy
* delete idp config, iam policy grid
* remove idp from loginpolicy
* idp detail component, generic idp create
* lint
* idp detail clientid-secrets, issuer, scopes
* hide clientsecret on update
* rm background style, idp config
* app tooltip fix
* lint
* dont refresh on idp select
* Update console/src/app/modules/idp-create/idp-create.component.html
Co-authored-by: Fabiennne <fabienne.gerschwiler@gmail.com>
Co-authored-by: Fabi <38692350+fgerschwiler@users.noreply.github.com>
2020-09-17 10:22:41 +02:00
|
|
|
|
2022-04-28 12:35:02 +02:00
|
|
|
<ng-container matColumnDef="availability">
|
|
|
|
<th class="availability" mat-header-cell *matHeaderCellDef>
|
|
|
|
<!-- <span>{{ 'IDP.AVAILABILITY' | translate }}</span> -->
|
|
|
|
</th>
|
|
|
|
<td class="availability" [routerLink]="routerLinkForRow(idp)" mat-cell *matCellDef="let idp">
|
2022-04-29 10:25:12 +02:00
|
|
|
<i
|
|
|
|
matTooltip="{{ 'IDP.AVAILABLE' | translate }}"
|
2022-04-28 12:35:02 +02:00
|
|
|
*ngIf="isEnabled(idp) && idp.state === IDPState.IDP_STATE_ACTIVE"
|
2022-04-29 10:25:12 +02:00
|
|
|
class="idp-available las la-check-circle"
|
|
|
|
></i>
|
|
|
|
<i
|
|
|
|
matTooltip="{{ 'IDP.AVAILABLEBUTINACTIVE' | translate }}"
|
2022-04-28 12:35:02 +02:00
|
|
|
*ngIf="isEnabled(idp) && idp.state === IDPState.IDP_STATE_INACTIVE"
|
2022-04-29 10:25:12 +02:00
|
|
|
class="idp-not-available las la-check-circle"
|
|
|
|
></i>
|
2022-04-28 12:35:02 +02:00
|
|
|
</td>
|
|
|
|
</ng-container>
|
2021-10-21 08:29:13 +02:00
|
|
|
|
2022-04-28 12:35:02 +02:00
|
|
|
<ng-container matColumnDef="name">
|
2022-04-29 10:25:12 +02:00
|
|
|
<th mat-header-cell *matHeaderCellDef>{{ 'IDP.NAME' | translate }}</th>
|
2022-04-28 12:35:02 +02:00
|
|
|
<td class="pointer" [routerLink]="routerLinkForRow(idp)" mat-cell *matCellDef="let idp">
|
2022-04-29 10:25:12 +02:00
|
|
|
<span>{{ idp?.name }}</span>
|
2022-04-28 12:35:02 +02:00
|
|
|
</td>
|
|
|
|
</ng-container>
|
feat(console): identity providers and login policies (#722)
* idp list, idp create route
* idp modules, lazy import, i18n, routing
* generic service, i18n
* seperate lockout, age policy component
* seperate component modules
* routing
* enum class
* login policy
* iam policy grid
* login policy providers
* idps login policy
* add idp dialog component
* add idp to loginpolicy
* delete idp config, iam policy grid
* remove idp from loginpolicy
* idp detail component, generic idp create
* lint
* idp detail clientid-secrets, issuer, scopes
* hide clientsecret on update
* rm background style, idp config
* app tooltip fix
* lint
* dont refresh on idp select
* Update console/src/app/modules/idp-create/idp-create.component.html
Co-authored-by: Fabiennne <fabienne.gerschwiler@gmail.com>
Co-authored-by: Fabi <38692350+fgerschwiler@users.noreply.github.com>
2020-09-17 10:22:41 +02:00
|
|
|
|
2022-04-28 12:35:02 +02:00
|
|
|
<ng-container matColumnDef="type">
|
2022-04-29 10:25:12 +02:00
|
|
|
<th mat-header-cell *matHeaderCellDef>{{ 'IDP.TYPE' | translate }}</th>
|
2022-04-28 12:35:02 +02:00
|
|
|
<td class="pointer" [routerLink]="routerLinkForRow(idp)" mat-cell *matCellDef="let idp">
|
2022-04-29 10:25:12 +02:00
|
|
|
<span class="state" *ngIf="idp?.oidcConfig">{{ 'IDP.OIDC.TITLE' | translate }}</span>
|
|
|
|
<span class="state" *ngIf="idp?.jwtConfig">{{ 'IDP.JWT.TITLE' | translate }}</span>
|
2022-04-28 12:35:02 +02:00
|
|
|
</td>
|
|
|
|
</ng-container>
|
feat(console): identity providers and login policies (#722)
* idp list, idp create route
* idp modules, lazy import, i18n, routing
* generic service, i18n
* seperate lockout, age policy component
* seperate component modules
* routing
* enum class
* login policy
* iam policy grid
* login policy providers
* idps login policy
* add idp dialog component
* add idp to loginpolicy
* delete idp config, iam policy grid
* remove idp from loginpolicy
* idp detail component, generic idp create
* lint
* idp detail clientid-secrets, issuer, scopes
* hide clientsecret on update
* rm background style, idp config
* app tooltip fix
* lint
* dont refresh on idp select
* Update console/src/app/modules/idp-create/idp-create.component.html
Co-authored-by: Fabiennne <fabienne.gerschwiler@gmail.com>
Co-authored-by: Fabi <38692350+fgerschwiler@users.noreply.github.com>
2020-09-17 10:22:41 +02:00
|
|
|
|
2022-04-28 12:35:02 +02:00
|
|
|
<ng-container matColumnDef="state">
|
2022-04-29 10:25:12 +02:00
|
|
|
<th mat-header-cell *matHeaderCellDef>{{ 'IDP.STATE' | translate }}</th>
|
2022-04-28 12:35:02 +02:00
|
|
|
<td class="pointer" [routerLink]="routerLinkForRow(idp)" mat-cell *matCellDef="let idp">
|
2022-04-29 10:25:12 +02:00
|
|
|
<span
|
|
|
|
class="state"
|
|
|
|
[ngClass]="{
|
|
|
|
active: idp.state === IDPState.IDP_STATE_ACTIVE,
|
|
|
|
inactive: idp.state === IDPState.IDP_STATE_INACTIVE
|
|
|
|
}"
|
|
|
|
>{{ 'IDP.STATES.' + idp.state | translate }}</span
|
|
|
|
>
|
2022-04-28 12:35:02 +02:00
|
|
|
</td>
|
|
|
|
</ng-container>
|
feat(console): identity providers and login policies (#722)
* idp list, idp create route
* idp modules, lazy import, i18n, routing
* generic service, i18n
* seperate lockout, age policy component
* seperate component modules
* routing
* enum class
* login policy
* iam policy grid
* login policy providers
* idps login policy
* add idp dialog component
* add idp to loginpolicy
* delete idp config, iam policy grid
* remove idp from loginpolicy
* idp detail component, generic idp create
* lint
* idp detail clientid-secrets, issuer, scopes
* hide clientsecret on update
* rm background style, idp config
* app tooltip fix
* lint
* dont refresh on idp select
* Update console/src/app/modules/idp-create/idp-create.component.html
Co-authored-by: Fabiennne <fabienne.gerschwiler@gmail.com>
Co-authored-by: Fabi <38692350+fgerschwiler@users.noreply.github.com>
2020-09-17 10:22:41 +02:00
|
|
|
|
2022-04-28 12:35:02 +02:00
|
|
|
<ng-container matColumnDef="creationDate">
|
2022-04-29 10:25:12 +02:00
|
|
|
<th mat-header-cell *matHeaderCellDef>{{ 'IDP.CREATIONDATE' | translate }}</th>
|
2022-04-28 12:35:02 +02:00
|
|
|
<td [routerLink]="routerLinkForRow(idp)" class="pointer" mat-cell *matCellDef="let idp">
|
2022-04-29 10:25:12 +02:00
|
|
|
<span>{{ idp.details.creationDate | timestampToDate | localizedDate: 'dd. MMM, HH:mm' }}</span>
|
2022-04-28 12:35:02 +02:00
|
|
|
</td>
|
|
|
|
</ng-container>
|
feat(console): identity providers and login policies (#722)
* idp list, idp create route
* idp modules, lazy import, i18n, routing
* generic service, i18n
* seperate lockout, age policy component
* seperate component modules
* routing
* enum class
* login policy
* iam policy grid
* login policy providers
* idps login policy
* add idp dialog component
* add idp to loginpolicy
* delete idp config, iam policy grid
* remove idp from loginpolicy
* idp detail component, generic idp create
* lint
* idp detail clientid-secrets, issuer, scopes
* hide clientsecret on update
* rm background style, idp config
* app tooltip fix
* lint
* dont refresh on idp select
* Update console/src/app/modules/idp-create/idp-create.component.html
Co-authored-by: Fabiennne <fabienne.gerschwiler@gmail.com>
Co-authored-by: Fabi <38692350+fgerschwiler@users.noreply.github.com>
2020-09-17 10:22:41 +02:00
|
|
|
|
2022-04-28 12:35:02 +02:00
|
|
|
<ng-container matColumnDef="changeDate">
|
2022-04-29 10:25:12 +02:00
|
|
|
<th mat-header-cell *matHeaderCellDef>{{ 'IDP.CHANGEDATE' | translate }}</th>
|
2022-04-28 12:35:02 +02:00
|
|
|
<td [routerLink]="routerLinkForRow(idp)" class="pointer" mat-cell *matCellDef="let idp">
|
2022-04-29 10:25:12 +02:00
|
|
|
<span>{{ idp.details.changeDate | timestampToDate | localizedDate: 'dd. MMM, HH:mm' }}</span>
|
2022-04-28 12:35:02 +02:00
|
|
|
</td>
|
|
|
|
</ng-container>
|
2020-09-29 13:21:40 +02:00
|
|
|
|
2022-04-28 12:35:02 +02:00
|
|
|
<ng-container matColumnDef="owner">
|
2022-04-29 10:25:12 +02:00
|
|
|
<th mat-header-cell *matHeaderCellDef>{{ 'IDP.OWNER' | translate }}</th>
|
2022-04-28 12:35:02 +02:00
|
|
|
<td [routerLink]="routerLinkForRow(idp)" class="pointer" mat-cell *matCellDef="let idp">
|
2022-04-29 10:25:12 +02:00
|
|
|
{{ 'IDP.OWNERTYPES.' + idp.owner | translate }}
|
|
|
|
</td>
|
2022-04-28 12:35:02 +02:00
|
|
|
</ng-container>
|
2020-09-29 13:21:40 +02:00
|
|
|
|
2022-04-28 12:35:02 +02:00
|
|
|
<ng-container matColumnDef="actions" stickyEnd>
|
|
|
|
<th class="idp-table-actions" mat-header-cell *matHeaderCellDef></th>
|
|
|
|
<td class="idp-table-actions" mat-cell *matCellDef="let idp">
|
|
|
|
<cnsl-table-actions>
|
2022-04-29 10:25:12 +02:00
|
|
|
<button
|
|
|
|
actions
|
|
|
|
*ngIf="!isEnabled(idp)"
|
|
|
|
[disabled]="
|
|
|
|
([
|
|
|
|
serviceType === PolicyComponentServiceType.ADMIN
|
|
|
|
? 'iam.idp.write'
|
|
|
|
: serviceType === PolicyComponentServiceType.MGMT
|
|
|
|
? 'org.idp.write'
|
|
|
|
: ''
|
|
|
|
]
|
|
|
|
| hasRole
|
|
|
|
| async) === false
|
|
|
|
"
|
|
|
|
mat-icon-button
|
|
|
|
matTooltip="{{ 'IDP.SETAVAILABLE' | translate }}"
|
|
|
|
(click)="addIdp(idp)"
|
|
|
|
>
|
2022-04-28 12:35:02 +02:00
|
|
|
<i class="las la-check-circle"></i>
|
|
|
|
</button>
|
2022-04-29 10:25:12 +02:00
|
|
|
<button
|
|
|
|
actions
|
|
|
|
*ngIf="isEnabled(idp)"
|
|
|
|
[disabled]="
|
|
|
|
([
|
|
|
|
serviceType === PolicyComponentServiceType.ADMIN
|
|
|
|
? 'iam.idp.write'
|
|
|
|
: serviceType === PolicyComponentServiceType.MGMT
|
|
|
|
? 'org.idp.write'
|
|
|
|
: ''
|
|
|
|
]
|
|
|
|
| hasRole
|
|
|
|
| async) === false
|
|
|
|
"
|
|
|
|
mat-icon-button
|
|
|
|
matTooltip="{{ 'IDP.SETUNAVAILABLE' | translate }}"
|
|
|
|
(click)="removeIdp(idp)"
|
|
|
|
>
|
2022-04-28 12:35:02 +02:00
|
|
|
<i class="las la-times-circle"></i>
|
|
|
|
</button>
|
2022-04-29 10:25:12 +02:00
|
|
|
<button
|
|
|
|
actions
|
|
|
|
[disabled]="
|
|
|
|
serviceType === PolicyComponentServiceType.MGMT && idp?.providerType === IDPOwnerType.IDP_OWNER_TYPE_ORG
|
|
|
|
"
|
|
|
|
mat-icon-button
|
|
|
|
color="warn"
|
|
|
|
matTooltip="{{ 'ACTIONS.REMOVE' | translate }}"
|
|
|
|
(click)="deleteIdp(idp)"
|
|
|
|
>
|
2022-04-28 12:35:02 +02:00
|
|
|
<i class="las la-trash"></i>
|
|
|
|
</button>
|
|
|
|
</cnsl-table-actions>
|
|
|
|
</td>
|
|
|
|
</ng-container>
|
|
|
|
|
feat: console flat navigation, settings (#3581)
* instance routing
* instance naming
* org list
* rm isonsystem
* breadcrumb type
* routing
* instance members
* fragment refresh org
* settings pages
* settings list, sidenav grouping, i18n
* org-settings, policy changes
* lint
* grid
* rename grid
* fallback to general
* cleanup
* general settings, remove cards
* sidenav for settings, label policy
* i18n
* header, nav backbuild
* general, project nav rehaul
* login text background adapt
* org nav anim
* org, instance settings, fix policy layout, roles
* i18n, active route for project
* lint
2022-05-09 15:01:36 +02:00
|
|
|
<tr
|
|
|
|
mat-header-row
|
|
|
|
*matHeaderRowDef="
|
|
|
|
([
|
|
|
|
serviceType === PolicyComponentServiceType.ADMIN
|
|
|
|
? 'iam.idp.write'
|
|
|
|
: serviceType === PolicyComponentServiceType.MGMT
|
|
|
|
? 'org.idp.write'
|
|
|
|
: ''
|
|
|
|
]
|
|
|
|
| hasRole
|
|
|
|
| async)
|
|
|
|
? displayedColumnsWithActions
|
|
|
|
: displayedColumns
|
|
|
|
"
|
|
|
|
></tr>
|
2022-04-29 10:25:12 +02:00
|
|
|
<tr class="highlight" mat-row *matRowDef="let row; columns: displayedColumns"></tr>
|
2022-04-28 12:35:02 +02:00
|
|
|
</table>
|
|
|
|
</div>
|
2022-05-18 14:16:11 +02:00
|
|
|
|
|
|
|
<div *ngIf="(loading$ | async) === false && !dataSource?.data?.length" class="no-content-row">
|
|
|
|
<i class="las la-exclamation"></i>
|
|
|
|
<span>{{ 'IDP.EMPTY' | translate }}</span>
|
|
|
|
</div>
|
|
|
|
|
2022-04-29 10:25:12 +02:00
|
|
|
<cnsl-paginator
|
|
|
|
#paginator
|
|
|
|
class="paginator"
|
|
|
|
[timestamp]="idpResult?.details?.viewTimestamp"
|
|
|
|
[length]="idpResult?.details?.totalResult || 0"
|
|
|
|
[pageSize]="10"
|
|
|
|
[pageSizeOptions]="[10, 20, 50, 100]"
|
|
|
|
(page)="changePage($event)"
|
|
|
|
></cnsl-paginator>
|
|
|
|
</cnsl-refresh-table>
|