+
Keine Fristen vorhanden
Sobald Fristen angelegt oder aus dem Fristenrechner übernommen werden, erscheinen sie hier.
@@ -108,7 +108,7 @@ export function renderDeadlines(): string {
Neue Frist
-
+
Keine Fristen mit diesen Filtern.
diff --git a/internal/services/dashboard_service.go b/internal/services/dashboard_service.go
index 9442a04..ed6be5f 100644
--- a/internal/services/dashboard_service.go
+++ b/internal/services/dashboard_service.go
@@ -68,7 +68,7 @@ type UpcomingDeadline struct {
DueDate string `json:"due_date" db:"due_date"`
ProjectID uuid.UUID `json:"project_id" db:"project_id"`
ProjectTitle string `json:"project_title" db:"project_title"`
- ProjectRef string `json:"projekt_ref" db:"projekt_ref"`
+ ProjectRef string `json:"project_reference" db:"project_reference"`
Urgency string `json:"urgency"`
}
@@ -81,7 +81,7 @@ type UpcomingAppointment struct {
Type *string `json:"type" db:"appointment_type"`
ProjectID *uuid.UUID `json:"project_id" db:"project_id"`
ProjectTitle *string `json:"project_title" db:"project_title"`
- ProjectRef *string `json:"projekt_ref" db:"projekt_ref"`
+ ProjectRef *string `json:"project_reference" db:"project_reference"`
}
// ActivityEntry is one row in the "Letzte Aktivität" feed.
@@ -91,7 +91,7 @@ type ActivityEntry struct {
ActorName *string `json:"actor_name" db:"actor_name"`
ProjectID uuid.UUID `json:"project_id" db:"project_id"`
ProjectTitle string `json:"project_title" db:"project_title"`
- ProjectRef string `json:"projekt_ref" db:"projekt_ref"`
+ ProjectRef string `json:"project_reference" db:"project_reference"`
Action *string `json:"action" db:"action"`
Details string `json:"details" db:"details"`
Description *string `json:"description" db:"description"`
@@ -202,7 +202,7 @@ SELECT f.id,
to_char(f.due_date, 'YYYY-MM-DD') AS due_date,
p.id AS project_id,
p.title AS project_title,
- COALESCE(p.reference, '') AS projekt_ref
+ COALESCE(p.reference, '') AS project_reference
FROM paliad.deadlines f
JOIN paliad.projects p ON p.id = f.project_id
WHERE f.status = 'pending'
@@ -231,7 +231,7 @@ SELECT t.id,
t.appointment_type,
t.project_id,
p.title AS project_title,
- COALESCE(p.reference, NULL) AS projekt_ref
+ COALESCE(p.reference, NULL) AS project_reference
FROM paliad.appointments t
LEFT JOIN paliad.projects p ON p.id = t.project_id
WHERE t.start_at >= $3
@@ -260,7 +260,7 @@ SELECT COALESCE(e.event_date, e.created_at) AS timestamp,
u.display_name AS actor_name,
e.project_id,
p.title AS project_title,
- COALESCE(p.reference, '') AS projekt_ref,
+ COALESCE(p.reference, '') AS project_reference,
e.event_type AS action,
e.title AS details,
e.description