はじまりの大地

このコミットが含まれているのは:
2024-07-15 09:14:04 +09:00
コミット 6632905f32
3501個のファイルの変更1439465行の追加0行の削除
+27
ファイルの表示
@@ -0,0 +1,27 @@
async function register ({
getRouter
}) {
const router = getRouter()
router.get('/ping', (req, res) => res.json({ message: 'pong' }))
router.get('/is-authenticated', (req, res) => res.json({ isAuthenticated: res.locals.authenticated }))
router.post('/form/post/mirror', (req, res) => {
res.json(req.body)
})
router.post('/form/post/mirror-raw-body', (req, res) => {
res.json(JSON.parse(req.rawBody))
})
}
async function unregister () {
return
}
module.exports = {
register,
unregister
}
// ###########################################################################
+20
ファイルの表示
@@ -0,0 +1,20 @@
{
"name": "peertube-plugin-test-five",
"version": "0.0.1",
"description": "Plugin test 5",
"engine": {
"peertube": ">=1.3.0"
},
"keywords": [
"peertube",
"plugin"
],
"homepage": "https://github.com/Chocobozzz/PeerTube",
"author": "Chocobozzz",
"bugs": "https://github.com/Chocobozzz/PeerTube/issues",
"library": "./main.js",
"staticDirs": {},
"css": [],
"clientScripts": [],
"translations": {}
}