Implement inbox
This commit is contained in:
12
src/server/activitypub/index.ts
Normal file
12
src/server/activitypub/index.ts
Normal file
@@ -0,0 +1,12 @@
|
||||
import * as express from 'express';
|
||||
|
||||
import user from './user';
|
||||
import inbox from './inbox';
|
||||
|
||||
const app = express();
|
||||
app.disable('x-powered-by');
|
||||
|
||||
app.use(user);
|
||||
app.use(inbox);
|
||||
|
||||
export default app;
|
Reference in New Issue
Block a user