Skip to content

Commit 14a306b

Browse files
authored
Update signals-sla.sql
1 parent efc3cdb commit 14a306b

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

sql/signals-sla.sql

+2-1
Original file line numberDiff line numberDiff line change
@@ -24,6 +24,7 @@ SELECT
2424
WHEN stat.state :: text = 'reopen requested' :: text THEN 'Verzoek tot heropenen' :: text
2525
WHEN stat.state :: text = 'reaction requested' :: text THEN 'Reactie gevraagd' :: text
2626
WHEN stat.state :: text = 'reaction received' :: text THEN 'Reactie ontvangen' :: text
27+
WHEN stat.state :: text = 'forward to external' :: text THEN 'Doorgezet naar extern' :: text
2728
WHEN stat.state :: text = '' :: text THEN 'Leeg' :: text
2829
ELSE NULL :: text
2930
END AS status
@@ -32,4 +33,4 @@ FROM
3233
JOIN signals_status stat ON sig.status_id = stat.id
3334
JOIN signals_categoryassignment cas ON sig.category_assignment_id = cas.id
3435
JOIN signals_category subcat ON subcat.id = cas.category_id
35-
JOIN signals_category maincat ON maincat.id = subcat.parent_id
36+
JOIN signals_category maincat ON maincat.id = subcat.parent_id

0 commit comments

Comments
 (0)