Add status indicator to certificates and show active domain names

This commit is contained in:
Julian Gassner
2025-01-08 05:43:10 +01:00
parent 2c1595756d
commit c6ab315165
7 changed files with 54 additions and 13 deletions

View File

@ -313,6 +313,7 @@ const internalCertificate = {
.where('is_deleted', 0)
.andWhere('id', data.id)
.allowGraph('[owner]')
.allowGraph('[proxy_hosts]')
.first();
if (access_data.permission_visibility !== 'all') {
@ -464,6 +465,7 @@ const internalCertificate = {
.where('is_deleted', 0)
.groupBy('id')
.allowGraph('[owner]')
.allowGraph('[proxy_hosts]')
.orderBy('nice_name', 'ASC');
if (access_data.permission_visibility !== 'all') {