( this: FastifyReply, url: string, message: Message )
| 28 | }); |
| 29 | |
| 30 | function redirectWithMessage( |
| 31 | this: FastifyReply, |
| 32 | url: string, |
| 33 | message: Message |
| 34 | ) { |
| 35 | return this.redirect(`${url}?${formatMessage(message)}`); |
| 36 | } |
| 37 | |
| 38 | /** |
| 39 | * Formats the message into a querystring. |
nothing calls this directly
no test coverage detected