mirror of
https://github.com/Chocobozzz/PeerTube.git
synced 2025-10-05 10:49:28 +02:00
Add outbox
This commit is contained in:
parent
b1cbc0dd3e
commit
e71bcc0f4b
8 changed files with 170 additions and 28 deletions
|
@ -1,10 +1,12 @@
|
|||
import * as express from 'express'
|
||||
import { activityPubClientRouter } from './client'
|
||||
import { inboxRouter } from './inbox'
|
||||
import { outboxRouter } from './outbox'
|
||||
|
||||
const activityPubRouter = express.Router()
|
||||
|
||||
activityPubRouter.use('/', inboxRouter)
|
||||
activityPubRouter.use('/', outboxRouter)
|
||||
activityPubRouter.use('/', activityPubClientRouter)
|
||||
|
||||
// ---------------------------------------------------------------------------
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue