Skip to content

Commit

Permalink
fix: add back missing handlebars route
Browse files Browse the repository at this point in the history
Zangetsu101 committed Apr 9, 2024
1 parent 2aae1e6 commit 3ab2cfd
Showing 1 changed file with 12 additions and 0 deletions.
12 changes: 12 additions & 0 deletions src/index.ts
Original file line number Diff line number Diff line change
@@ -317,6 +317,18 @@ export async function createServer() {
}
})

server.route({
method: 'GET',
path: '/handlebars.js',
handler: handlebarsHandler,
options: {
auth: false,
tags: ['api'],
description:
'Serves custom handlebar helper functions as JS to be used in certificates'
}
})

server.route({
method: 'GET',
path: '/validators.js',

0 comments on commit 3ab2cfd

Please sign in to comment.