We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
The example servers all add an "/ingest" endpoint (which is, optionally, protected). It looks like this today:
const ingestEndpoint = { method: ['POST'], handle: async () => { const changes = [] as Array<OfferChange>; const changeHandler = api.registerChangeHandler(async change => { changes.push(change); }); await s.ingest(); changeHandler.remove(); return changes; }, } as CustomRequestHandler;
Given that this is commonly wanted, we should move it to the opr-core library and make it easily installable in any server.
This should be created under opr-core/src/server/installable-endpoints/ingest.ts. Then, export the endpoint as a CustomRequestHandler.
opr-core/src/server/installable-endpoints/ingest.ts
The text was updated successfully, but these errors were encountered:
No branches or pull requests
The example servers all add an "/ingest" endpoint (which is, optionally, protected). It looks like this today:
Given that this is commonly wanted, we should move it to the opr-core library and make it easily installable in any server.
This should be created under
opr-core/src/server/installable-endpoints/ingest.ts
. Then, export the endpoint as a CustomRequestHandler.The text was updated successfully, but these errors were encountered: