Skip to content

Commit

Permalink
fix pg trigger display (#5127)
Browse files Browse the repository at this point in the history
  • Loading branch information
dieriba authored Jan 24, 2025
1 parent 74bb660 commit 1eaef85
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 1 deletion.
3 changes: 3 additions & 0 deletions backend/windmill-api/openapi.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -13221,6 +13221,9 @@ components:
type: string
error:
type: string
last_server_ping:
type: string
format: date-time
required:
- path
- script_path
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,10 @@
if (newTrigger) {
triggers[i] = {
...triggers[i],
enabled: newTrigger.enabled
error: newTrigger.error,
last_server_ping: newTrigger.last_server_ping,
enabled: newTrigger.enabled,
server_id: newTrigger.server_id
}
}
}
Expand Down

0 comments on commit 1eaef85

Please sign in to comment.