webhook.model.js 279 B

1234567891011121314
  1. // api/webhooks/webhook.model.js
  2. import localDatabase from "../../common/localDatabase.js";
  3. const schema = new localDatabase.Schema(
  4. {
  5. payload: {},
  6. },
  7. { timestamps: true }
  8. );
  9. const Webhook = localDatabase.model("Webhook", schema, "webhook");
  10. export default Webhook;