Add internal provision endpoint for rSpace Registry
Simple acknowledge endpoint — feed created on first post. Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
This commit is contained in:
parent
ea5f546695
commit
6f020ddac9
|
|
@ -0,0 +1,17 @@
|
|||
import { NextResponse } from "next/server";
|
||||
|
||||
/**
|
||||
* Internal provision endpoint — called by rSpace Registry when activating
|
||||
* this app for a space. No auth required (only reachable from Docker network).
|
||||
*
|
||||
* rsocials manages social feeds per space slug.
|
||||
* Acknowledges provisioning; feed is created on first post.
|
||||
*/
|
||||
export async function POST(request: Request) {
|
||||
const body = await request.json();
|
||||
const space: string = body.space?.trim();
|
||||
if (!space) {
|
||||
return NextResponse.json({ error: "Missing space name" }, { status: 400 });
|
||||
}
|
||||
return NextResponse.json({ status: "ok", space, message: "rsocials space acknowledged" });
|
||||
}
|
||||
Loading…
Reference in New Issue