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

This commit is contained in:
2025-12-05 21:36:50 +01:00
parent c554479604
commit 2b7950f5dc
44 changed files with 1245 additions and 189 deletions
@@ -27,16 +27,29 @@
Deactivate
</button>
}
<button
nz-button
nzDanger
nz-popconfirm
nzPopconfirmTitle="Are you sure you want to delete this subscription?"
(nzOnConfirm)="deleteSubscription()"
>
<span nz-icon nzType="delete"></span>
Delete
</button>
@if (expertMode() && isOutgoing() && subscription()!.confirmed && subscription()!.active) {
<button
nz-button
nz-popconfirm
nzPopconfirmTitle="Set this subscription to inactive? You will stop receiving messages."
(nzOnConfirm)="setInactive()"
>
<span nz-icon nzType="pause-circle"></span>
Set Inactive
</button>
}
@if (expertMode() && isOutgoing()) {
<button
nz-button
nzDanger
nz-popconfirm
nzPopconfirmTitle="Are you sure you want to delete this subscription?"
(nzOnConfirm)="deleteSubscription()"
>
<span nz-icon nzType="delete"></span>
Delete
</button>
}
</div>
</div>