More webapp changes+fixes
Build Docker and Deploy / Build Docker Container (push) Successful in 1m0s
Build Docker and Deploy / Run Unit-Tests (push) Successful in 9m18s
Build Docker and Deploy / Deploy to Server (push) Successful in 22s

This commit is contained in:
2025-12-07 04:21:11 +01:00
parent 2b7950f5dc
commit c81143ecdc
17 changed files with 297 additions and 20 deletions
@@ -133,6 +133,33 @@
<span nz-icon nzType="close"></span>
</button>
} @else {
<!-- Own subscriptions: can activate/deactivate -->
@if (isOwnSubscription(sub)) {
@if (sub.active) {
<button
nz-button
nzSize="small"
nz-tooltip
nzTooltipTitle="Deactivate"
nz-popconfirm
nzPopconfirmTitle="Deactivate this subscription?"
(nzOnConfirm)="deactivateSubscription(sub)"
>
<span nz-icon nzType="pause-circle"></span>
</button>
} @else {
<button
nz-button
nzSize="small"
nzType="primary"
nz-tooltip
nzTooltipTitle="Activate"
(click)="activateSubscription(sub)"
>
<span nz-icon nzType="play-circle"></span>
</button>
}
}
<!-- Confirmed or outgoing: can revoke -->
<button
nz-button