feat: implement resolvers for email template

This commit is contained in:
Lakhan Samani
2022-07-17 12:32:01 +05:30
parent 50f52a99b4
commit cd46da60a0
9 changed files with 220 additions and 11 deletions

View File

@@ -28,7 +28,7 @@ func WebhooksResolver(ctx context.Context, params *model.PaginatedInput) (*model
webhooks, err := db.Provider.ListWebhook(ctx, pagination)
if err != nil {
log.Debug("failed to get webhook logs: ", err)
log.Debug("failed to get webhooks: ", err)
return nil, err
}
return webhooks, nil