mirror of
https://git.sr.ht/~cadence/cloudtube
synced 2024-11-10 02:27:29 +00:00
11 lines
273 B
JavaScript
11 lines
273 B
JavaScript
|
const constants = require("../utils/constants")
|
||
|
const {redirect} = require("pinski/plugins")
|
||
|
|
||
|
module.exports = [
|
||
|
{
|
||
|
route: `/(${constants.regex.video_id})`, priority: -1, methods: ["GET"], code: async ({fill}) => {
|
||
|
return redirect(`/watch?v=${fill[0]}`, 301)
|
||
|
}
|
||
|
}
|
||
|
]
|