Skip to content

Commit 0f9f6e7

Browse files
authored
Fixed the event constant table
The event constant table listed the `PRE_SERIALIZE` and `POST_SERIALIZE` as constants for the `kernel.request` event. The correct event for those constants should be `kernel.view`.
1 parent 31607f3 commit 0f9f6e7

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

core/events.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -101,8 +101,8 @@ Constant | Event | Priority |
101101
`POST_VALIDATE` | `kernel.view` | 63 |
102102
`PRE_WRITE` | `kernel.view` | 33 |
103103
`POST_WRITE` | `kernel.view` | 31 |
104-
`PRE_SERIALIZE` | `kernel.request` | 17 |
105-
`POST_SERIALIZE` | `kernel.request` | 15 |
104+
`PRE_SERIALIZE` | `kernel.view` | 17 |
105+
`POST_SERIALIZE` | `kernel.view` | 15 |
106106
`PRE_RESPOND` | `kernel.view` | 9 |
107107
`POST_RESPOND` | `kernel.response` | 0 |
108108

0 commit comments

Comments
 (0)