Browse Source

fix(api): fix webhook notification schema type issue

pull/37/head
isra el 1 year ago
parent
commit
a61c1c4ce8
  1. 2
      api/src/webhook/schemas/webhook-notification.schema.ts

2
api/src/webhook/schemas/webhook-notification.schema.ts

@ -21,7 +21,7 @@ export class WebhookNotification {
@Prop({ type: Types.ObjectId, ref: SMS.name })
sms: SMS
@Prop({ type: String })
@Prop({ type: Date })
deliveredAt: Date
@Prop({ type: Date })

Loading…
Cancel
Save