chore: debug log 仅输出app的log fix(commons): fix sanitize not return value. feat(webhooks): add gitea webhooks api. Co-authored-by: Ivan Li <ivanli@live.cn> Co-authored-by: Ivan <ivanli@live.cn> Reviewed-on: #2 Co-Authored-By: Ivan Li <ivan@noreply.%(DOMAIN)s> Co-Committed-By: Ivan Li <ivan@noreply.%(DOMAIN)s>
10 lines
283 B
TypeScript
10 lines
283 B
TypeScript
import { SourceService } from '../enums/source-service.enum';
|
|
import { WebhookLog } from '../webhook-log.entity';
|
|
|
|
export class CreateWebhookLogModel<T> implements Partial<WebhookLog> {
|
|
sourceDelivery: string;
|
|
sourceEvent: string;
|
|
sourceService: SourceService;
|
|
payload: T;
|
|
}
|