Added New Custom Number Path #28

Open
sahrohit wants to merge 2 commits from sahrohit/master into master
Showing only changes of commit 4973489dd1 - Show all commits

View File

@ -57,6 +57,28 @@ app.get('/record/@:name', async (req, res) => {
res.json(data)
})
app.get('/number/@:num', async (req, res) => {
const { num } = req.params
console.log(num)
const { theme = 'moebooru' } = req.query
let length = PLACES
// This helps with GitHub's image cache
Review

I don't think this is needed here as the number will be the same anyway.

I don't think this is needed here as the number will be the same anyway.
res.set({
'content-type': 'image/svg+xml',
'cache-control': 'max-age=0, no-cache, no-store, must-revalidate',
})
length = 10
// Send the generated SVG as the result
const renderSvg = themify.getCountImage({
count: parseInt(num),
theme,
length,
})
res.send(renderSvg)
})
app.get('/heart-beat', (req, res) => {
res.set({
'cache-control': 'max-age=0, no-cache, no-store, must-revalidate'