aboutsummaryrefslogtreecommitdiff
path: root/services/dashboard
diff options
context:
space:
mode:
authorBobby <[email protected]>2026-03-08 23:39:34 +0530
committerBobby <[email protected]>2026-03-08 23:39:34 +0530
commit3138840a8c3d16219f1bc6ba9f5232141a206892 (patch)
treedb1092ab7e27a5c7e6b341a5baf5225412fa9175 /services/dashboard
parent94d5561e7cc39eb2909bdc36d4ef4972cd21e56d (diff)
downloaddove-main.tar.xz
dove-main.zip
fix(domain): ensure proper formatting of error messages and add newline at end of fileHEADmain
Diffstat (limited to 'services/dashboard')
-rw-r--r--services/dashboard/overview.go18
1 files changed, 9 insertions, 9 deletions
diff --git a/services/dashboard/overview.go b/services/dashboard/overview.go
index e073bf8..5aa4b72 100644
--- a/services/dashboard/overview.go
+++ b/services/dashboard/overview.go
@@ -107,16 +107,16 @@ type DnsCard struct {
}
type OverviewResponse struct {
- BindAddress string `json:"bind_address"`
- DnsAddress string `json:"dns_address"`
- Services []ServiceStatus `json:"services"`
- Email EmailCard `json:"email"`
- Domains DomainsCard `json:"domains"`
- ReverseProxy ReverseProxyCard `json:"reverse_proxy"`
+ BindAddress string `json:"bind_address"`
+ DnsAddress string `json:"dns_address"`
+ Services []ServiceStatus `json:"services"`
+ Email EmailCard `json:"email"`
+ Domains DomainsCard `json:"domains"`
+ ReverseProxy ReverseProxyCard `json:"reverse_proxy"`
Storage ObjectStorageCard `json:"storage"`
- CronJobs CronJobsCard `json:"cron_jobs"`
- Dove DoveCard `json:"dove"`
- Dns DnsCard `json:"dns"`
+ CronJobs CronJobsCard `json:"cron_jobs"`
+ Dove DoveCard `json:"dove"`
+ Dns DnsCard `json:"dns"`
}
func Overview() OverviewResponse {